Skip to content

Commit

Permalink
Update CI config to use latest Ubuntu and node version
Browse files Browse the repository at this point in the history
  • Loading branch information
papandreou committed Oct 27, 2023
1 parent 16f98b9 commit 8570d1d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ name: Tests

jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
name: Node ${{ matrix.node }}
strategy:
matrix:
node:
- '12'
- '14'
- '16'
- '18'
- '20'
steps:
- uses: actions/checkout@v2
- name: Setup node
Expand All @@ -23,7 +25,7 @@ jobs:
- run: npm test

test-targets:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
name: ${{ matrix.targets.name }}
strategy:
matrix:
Expand All @@ -38,7 +40,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '14'
node-version: '20'
- run: npm install
- run: npm run ${{ matrix.targets.target }}
- name: Upload coverage
Expand Down

0 comments on commit 8570d1d

Please sign in to comment.