Skip to content

Commit 062d32b

Browse files
authored
Add Node 24 support (#2781)
1 parent ddac602 commit 062d32b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
19-
node-version: ["22.x", "20.x"]
19+
node-version: ["20.x", "22.x", "24.x"]
2020
steps:
2121
- uses: actions/checkout@v6
2222
- uses: actions/setup-node@v6
@@ -31,7 +31,7 @@ jobs:
3131
- run: npm run test:webpack
3232
# Upload coverage for sonar (only matching OS and one node version required)
3333
- uses: actions/upload-artifact@v5
34-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '22.x' }}
34+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '24.x' }}
3535
with:
3636
name: code-coverage-${{matrix.os}}-${{matrix.node-version}}
3737
path: coverage/
@@ -48,7 +48,7 @@ jobs:
4848
fetch-depth: 0
4949
- uses: actions/download-artifact@v6
5050
with:
51-
name: code-coverage-ubuntu-latest-22.x
51+
name: code-coverage-ubuntu-latest-24.x
5252
path: coverage/
5353
- uses: SonarSource/sonarqube-scan-action@fd88b7d7ccbaefd23d8f36f73b59db7a3d246602 # v5
5454
env:

.github/workflows/e2e-node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-latest]
22-
node-version: [22.x, 20.x]
22+
node-version: ["20.x", "22.x", "24.x"]
2323
environment-name: ["ESS PodSpaces", "ESS Release-2-3", "ESS Next"]
2424
experimental: [false]
2525
steps:

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@
207207
"uuid": "^11.0.1"
208208
},
209209
"engines": {
210-
"node": "^20.0.0 || ^22.0.0"
210+
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
211211
},
212212
"optionalDependencies": {
213213
"fsevents": "^2.3.3"

0 commit comments

Comments
 (0)