Skip to content

Commit

Permalink
chore: add node16 to CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed Jul 2, 2022
1 parent 870e6aa commit 7535db6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
timeout-minutes: 3
strategy:
matrix:
nodejs: [8, 10, 12, 14]
nodejs: [8, 10, 12, 14, 16]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
Expand All @@ -42,7 +42,7 @@ jobs:
run: nyc --include=src npm test

- name: Report
if: matrix.nodejs >= 14 && matrix.os == 'ubuntu-latest'
if: matrix.nodejs >= 16 && matrix.os == 'ubuntu-latest'
run: |
nyc report --reporter=text-lcov > coverage.lcov
bash <(curl -s https://codecov.io/bash)
Expand Down

0 comments on commit 7535db6

Please sign in to comment.