Skip to content

Commit

Permalink
updated: ci node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
GianlucaGuarini committed Jan 19, 2024
1 parent e3a2ba9 commit 546e826
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
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 == '19.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 == '19.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 546e826

Please sign in to comment.