Skip to content

Commit

Permalink
ci: remove Node 12, add Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
webketje committed Apr 25, 2023
1 parent 0810728 commit c272b8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
node: ['12.0']
node: ['14.14.0']
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
node: ['12.0', '14.0', '16.0', '18.0']
node: ['14.14.0', '16.0', '18.0', '20.0']
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -55,9 +55,9 @@ jobs:
- run: npm install
- run: npm test
- run: npm run test:types
- if: matrix.os == 'ubuntu-latest' && matrix.node == '16.0'
- if: matrix.os == 'ubuntu-latest' && matrix.node == '18.0'
run: npm run coverage
- if: matrix.os == 'ubuntu-latest' && matrix.node == '16.0'
- if: matrix.os == 'ubuntu-latest' && matrix.node == '18.0'
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ github.token }}
Expand Down

0 comments on commit c272b8b

Please sign in to comment.