Skip to content

Commit

Permalink
fixed: remove deprecated node version from the CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
GianlucaGuarini committed Feb 16, 2024
1 parent cb5dd12 commit 9790916
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 19.x]
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
Expand All @@ -23,10 +23,10 @@ jobs:
- run: npm i
- run: npm test
- name: Generate Coverage
if: ${{ success() && github.event_name != 'pull_request' && matrix.node-version == '18.x' }}
if: ${{ success() && github.event_name != 'pull_request' && matrix.node-version == '20.x' }}
run: npm run cov
- name: Coveralls
if: ${{ success() && github.event_name != 'pull_request' && matrix.node-version == '18.x' }}
if: ${{ success() && github.event_name != 'pull_request' && matrix.node-version == '20.x' }}
uses: coverallsapp/github-action@master
with:
path-to-lcov: ./coverage/lcov.info
Expand Down

0 comments on commit 9790916

Please sign in to comment.