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 0d0e038 commit 01cd382Copy full SHA for 01cd382
.github/workflows/test.yml
@@ -5,21 +5,14 @@ on: [push, pull_request]
5
jobs:
6
test:
7
runs-on: ubuntu-latest
8
-
9
strategy:
10
matrix:
11
- node-version: [10.x, 12.x]
12
+ node-version: [14, 16]
13
steps:
14
- uses: actions/checkout@v2
15
- - name: Use Node.js ${{ matrix.node-version }}
16
- uses: actions/setup-node@v1
+ - uses: actions/setup-node@v2
17
with:
18
node-version: ${{ matrix.node-version }}
19
- - name: npm install, build, and test
20
- run: |
21
- npm install
22
- npm run build --if-present
23
- npm test
24
- env:
25
- CI: true
+ - run: npm install
+ - run: npm run build --if-present
+ - run: npm run test
0 commit comments