Skip to content

Commit ce2172f

Browse files
committed
ci: use nodejs 24 for build
1 parent 67d383f commit ce2172f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10-
- name: Use Node.js 22.x
10+
- name: Use Node.js 24
1111
uses: actions/setup-node@v4
1212
with:
13-
node-version: 22.x
13+
node-version: 24
1414
cache: 'npm'
1515
- run: npm ci
1616
- run: npm run build
@@ -42,7 +42,7 @@ jobs:
4242
- name: Setup Node.js
4343
uses: actions/setup-node@v4
4444
with:
45-
node-version: 22
45+
node-version: 24
4646
cache: 'npm'
4747
- uses: actions/download-artifact@v4
4848
with:
@@ -81,7 +81,7 @@ jobs:
8181
strategy:
8282
matrix:
8383
os: [ ubuntu-latest, windows-latest ]
84-
node-version: [ 8, 22 ]
84+
node-version: [ 8, 24 ]
8585

8686
runs-on: ${{ matrix.os }}
8787
steps:
@@ -97,13 +97,13 @@ jobs:
9797
name: build
9898

9999
- name: Run all tests
100-
if: matrix.os == 'ubuntu-latest' && matrix.node-version == 22
100+
if: matrix.os == 'ubuntu-latest' && matrix.node-version == 24
101101
run: |
102102
npm ci
103103
npm run test
104104
timeout-minutes: 1
105105

106106
- name: Run units
107-
if: matrix.os != 'ubuntu-latest' || matrix.node-version != 22
107+
if: matrix.os != 'ubuntu-latest' || matrix.node-version != 24
108108
run: npm run test:smoke:cjs
109109
timeout-minutes: 1

0 commit comments

Comments
 (0)