Skip to content

Commit c150e71

Browse files
authored
Update CI to use Node 24 (#3113)
1 parent 87c74ec commit c150e71

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
- uses: actions/checkout@v3
1111
with:
1212
persist-credentials: false
13-
- name: use node.js v20.x
13+
- name: use node.js v24.x
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: 20.x
16+
node-version: 24.x
1717
- run: npm ci
1818
- run: npm run build
1919
- uses: JamesIves/[email protected]

.github/workflows/enforce-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v3
12-
- name: use node.js v20.x
12+
- name: use node.js v24.x
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 20.x
15+
node-version: 24.x
1616
- run: npm ci
1717
# Work around https://github.com/tc39/ecmarkup/pull/607
1818
- run: 'if ! npx emu-format --check spec.html; then echo "You need to run \`npm run format\`"; exit 1; fi'

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v3
8-
- name: use node.js v20.x
8+
- name: use node.js v24.x
99
uses: actions/setup-node@v3
1010
with:
11-
node-version: 20.x
11+
node-version: 24.x
1212
- run: npm ci
1313
- run: npm run lint
1414
- run: npm run build:spec

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- name: use node.js v23.x
12+
- name: use node.js v24.x
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 23.x
15+
node-version: 24.x
1616
- run: npm ci
1717
- run: npm run test-demitasse
1818
env:
@@ -23,10 +23,10 @@ jobs:
2323
- uses: actions/checkout@v3
2424
with:
2525
submodules: true
26-
- name: use node.js v23.x
26+
- name: use node.js v24.x
2727
uses: actions/setup-node@v3
2828
with:
29-
node-version: 23.x
29+
node-version: 24.x
3030
- run: npm run codecov:test262
3131
- uses: codecov/codecov-action@v4
3232
with:
@@ -38,20 +38,20 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@v3
41-
- name: use node.js v23.x
41+
- name: use node.js v24.x
4242
uses: actions/setup-node@v3
4343
with:
44-
node-version: 23.x
44+
node-version: 24.x
4545
- run: npm ci
4646
- run: npm run test-cookbook
4747
test-validstrings:
4848
runs-on: ubuntu-latest
4949
steps:
5050
- uses: actions/checkout@v3
51-
- name: use node.js v23.x
51+
- name: use node.js v24.x
5252
uses: actions/setup-node@v3
5353
with:
54-
node-version: 23.x
54+
node-version: 24.x
5555
- run: npm ci
5656
- run: |
5757
cd polyfill

0 commit comments

Comments
 (0)