Skip to content

Commit

Permalink
Use latest NodeJS on CI (#273)
Browse files Browse the repository at this point in the history
The CI builds started failing on node `v22.5.0` likely due to
nodejs/node#53902

The NodeJS version on CI was therefore pinned to 21 in
#272

This pull request goes back to using the latest NodeJS version, and
should be merged to master once the issue with NodeJS `v22.5.0` noted
above is fixed, and the build on this pull request succeeds.
  • Loading branch information
lucaong authored Jul 22, 2024
1 parent 4d1ac66 commit 325dbd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '21'
node-version: 'latest'
cache: 'yarn'

- name: Install dependencies
Expand All @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '21'
node-version: 'latest'
cache: 'yarn'

- name: Install dependencies
Expand Down

0 comments on commit 325dbd8

Please sign in to comment.