We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a238dfb commit dfb1114Copy full SHA for dfb1114
.github/workflows/test.yml
@@ -5,20 +5,16 @@ on: [push, pull_request]
5
jobs:
6
lint:
7
runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ node-version: [14, 16]
11
steps:
12
- uses: actions/checkout@v2
- - name: Setup Node.js
- uses: actions/setup-node@v1
13
+ - uses: actions/setup-node@v2
14
with:
- node-version: 12.x
- - name: npm install
15
- run: npm install
16
- env:
17
- CI: true
18
- - name: lint
19
- run: npm run lint
20
21
+ node-version: ${{ matrix.node-version }}
+ - run: npm install
+ - run: npm run lint
22
23
unit:
24
0 commit comments