Skip to content

Commit 15ee53f

Browse files
authored
Run tests against Node.js 24 (#2948) (#2949)
1 parent fa6d9bc commit 15ee53f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.buildkite/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ steps:
1010
env:
1111
NODE_VERSION: "{{ matrix.nodejs }}"
1212
TEST_SUITE: "platinum"
13-
STACK_VERSION: 9.0.0
13+
STACK_VERSION: 9.1.0
1414
GITHUB_TOKEN_PATH: "secret/ci/elastic-elasticsearch-js/github-token"
1515
TEST_ES_STACK: "1"
1616
matrix:
1717
setup:
1818
nodejs:
1919
- "20"
2020
- "22"
21-
- "23"
21+
- "24"
2222
command: ./.buildkite/run-tests.sh
2323
artifact_paths: "./junit-output/junit-*.xml"
2424
- wait: ~

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
node-version: [20.x, 22.x, 23.x]
35+
node-version: [20.x, 22.x, 24.x]
3636
os: [ubuntu-latest, windows-latest, macOS-latest]
3737

3838
steps:
@@ -73,7 +73,7 @@ jobs:
7373
- name: Use Node.js
7474
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
7575
with:
76-
node-version: 22.x
76+
node-version: 24.x
7777

7878
- name: Install
7979
run: |

.github/workflows/npm-publish-unstable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
ref: main
5050
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
5151
with:
52-
node-version: "22.x"
52+
node-version: "24.x"
5353
registry-url: "https://registry.npmjs.org"
5454
- name: Install dependencies
5555
run: |

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
ref: ${{ github.event.inputs.branch }}
1919
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
2020
with:
21-
node-version: "22.x"
21+
node-version: "24.x"
2222
registry-url: "https://registry.npmjs.org"
2323
- run: npm install -g npm
2424
- run: npm install

0 commit comments

Comments
 (0)