Skip to content

Commit 98eeb24

Browse files
authored
ci: add nodejs v16 to test matrix (#32)
1 parent db4f256 commit 98eeb24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
node-version: [10.x, 11.x, 12.x, 13.x, 14.x, 15.x]
29+
node-version: [10, 11, 12, 13, 14, 15, 16]
3030
steps:
3131
- uses: actions/checkout@v2
3232
- name: Use Node.js ${{ matrix.node-version }}
@@ -36,13 +36,13 @@ jobs:
3636
- name: Install Dependencies
3737
run: npm install --ignore-scripts
3838
- name: Test
39-
run: npm run test
39+
run: npm test
4040

4141
test-legacy:
4242
runs-on: ubuntu-latest
4343
strategy:
4444
matrix:
45-
node-version: [6.x, 8.x]
45+
node-version: [6, 8]
4646
steps:
4747
- uses: actions/checkout@v2
4848
- name: Use Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)