Skip to content

Commit 5266b43

Browse files
committed
💚 update testing action
1 parent 0cbc938 commit 5266b43

File tree

2 files changed

+26
-22
lines changed

2 files changed

+26
-22
lines changed

.github/workflows/nodejs.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/run-tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Run tests
2+
3+
on: push
4+
5+
jobs:
6+
run-tests:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
fail-fast: true
11+
matrix:
12+
node_version:
13+
- '12'
14+
- '14'
15+
- '16'
16+
- '17'
17+
18+
steps:
19+
- uses: actions/checkout@v2g
20+
- uses: actions/setup-node@v2
21+
name: Use Node.js v${{matrix.node_version}}
22+
with:
23+
node-version: ${{matrix.node_version}}
24+
cache: 'yarn'
25+
- run: yarn install
26+
- run: yarn validate

0 commit comments

Comments
 (0)