Skip to content

Commit

Permalink
Update Node.js and GitHub action versions
Browse files Browse the repository at this point in the history
We have problems running integration tests in Node.js ~20.16 and
Node.js >=22.4. For now we pin these versions for the main CI workflow.
  • Loading branch information
remcohaszing committed Aug 19, 2024
1 parent 6982e3d commit 8ac0e25
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ jobs:
# Integration tests are not yet ready to run in parallel
max-parallel: 1
matrix:
node: ['16', '18', '20']
node:
- 16
- 18
- 20.15.1
- 22.3.0

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@ jobs:

strategy:
matrix:
node: ['14', '16', '18']
node:
- 14
- 16
- 18
- 20
- 22

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand Down

0 comments on commit 8ac0e25

Please sign in to comment.