Skip to content

Commit

Permalink
Remove Node.js v16 and add Node.js v21 in ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
octet-stream committed Oct 24, 2023
1 parent ece0882 commit 92ffc68
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 @@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node: [16.x, 18.x, 20.x]
node: [18.x, 20.x, 21.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Codecov
uses: codecov/codecov-action@v3
if: matrix.node == '16.x' && matrix.os == 'ubuntu-latest'
if: matrix.node == '18.x' && matrix.os == 'ubuntu-latest'
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/coverage-final.json
Expand Down

0 comments on commit 92ffc68

Please sign in to comment.