Skip to content

Commit 325dbd8

Browse files
authored
Use latest NodeJS on CI (#273)
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.
1 parent 4d1ac66 commit 325dbd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- uses: actions/setup-node@v4
2424
with:
25-
node-version: '21'
25+
node-version: 'latest'
2626
cache: 'yarn'
2727

2828
- name: Install dependencies
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v4
4040
- uses: actions/setup-node@v4
4141
with:
42-
node-version: '21'
42+
node-version: 'latest'
4343
cache: 'yarn'
4444

4545
- name: Install dependencies

0 commit comments

Comments
 (0)