Skip to content

Commit bc4f827

Browse files
committedJul 2, 2022
chore: update CI matrix
1 parent 56ab81f commit bc4f827

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
nodejs: [6, 8, 10, 12]
11+
nodejs: [6, 8, 10, 12, 14, 16]
1212
steps:
13-
- uses: actions/checkout@v1
14-
- uses: actions/setup-node@v1
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-node@v2
1515
with:
1616
node-version: ${{ matrix.nodejs }}
1717

@@ -25,19 +25,19 @@ jobs:
2525
run: npm install
2626

2727
- name: (coverage) Install
28-
if: matrix.nodejs >= 12
28+
if: matrix.nodejs >= 16
2929
run: npm install -g nyc
3030

3131
- name: Test
3232
run: npm test
33-
if: matrix.nodejs < 12
33+
if: matrix.nodejs < 16
3434

3535
- name: (coverage) Test
3636
run: nyc --include=src npm test
37-
if: matrix.nodejs >= 12
37+
if: matrix.nodejs >= 16
3838

3939
- name: (coverage) Report
40-
if: matrix.nodejs >= 12
40+
if: matrix.nodejs >= 16
4141
run: |
4242
nyc report --reporter=text-lcov > coverage.lcov
4343
bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)
Please sign in to comment.