Skip to content

Commit 59612d5

Browse files
committed
ci: test on Node.js 24, too
1 parent 7d12535 commit 59612d5

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
node-version: [18.x, 20.x, 22.x]
12+
node-version: [18.x, 20.x, 22.x, 24.x]
1313

1414
steps:
1515
- uses: actions/checkout@v4

.gitlab-ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,14 @@ node_22:
3030
- cd ./export-server
3131
- npm install
3232
- ./test.sh
33+
34+
node_24:
35+
image: node:24-alpine
36+
stage: build
37+
before_script:
38+
- node --version
39+
- npm --version
40+
script:
41+
- cd ./export-server
42+
- npm install
43+
- ./test.sh

0 commit comments

Comments
 (0)