Skip to content

Commit 5111f7e

Browse files
Add node 24 to pipeline matrix
1 parent f45453a commit 5111f7e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: ./.github/actions/npm-setup
6767
with:
6868
runner: ubuntu-22.04
69-
node-version: 22.x
69+
node-version: 24.x
7070
workspace: "${{ matrix.module }}"
7171
- name: Code linting
7272
env:
@@ -92,7 +92,7 @@ jobs:
9292
uses: ./.github/actions/npm-setup
9393
with:
9494
runner: ubuntu-22.04
95-
node-version: 22.x
95+
node-version: 24.x
9696
workspace: "${{ matrix.module }}"
9797
- name: Compile
9898
run: |
@@ -112,7 +112,7 @@ jobs:
112112
fail-fast: true
113113
matrix:
114114
runner: [ubuntu-22.04]
115-
node-version: [20.x, 22.x]
115+
node-version: [20.x, 22.x, 24.x]
116116
runs-on: ${{ matrix.runner }}
117117
steps:
118118
- name: Code checkout
@@ -146,7 +146,7 @@ jobs:
146146
fail-fast: false
147147
matrix:
148148
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
149-
node-version: [20.x, 22.x]
149+
node-version: [20.x, 22.x, 24.x]
150150
uses: ./.github/workflows/test-template.yml
151151
with:
152152
runner: ubuntu-22.04
@@ -167,7 +167,7 @@ jobs:
167167
fail-fast: false
168168
matrix:
169169
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
170-
node-version: [20.x, 22.x]
170+
node-version: [20.x, 22.x, 24.x]
171171
uses: ./.github/workflows/test-template.yml
172172
with:
173173
runner: ubuntu-22.04

.github/workflows/windows-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
3232
ref: ${{ github.event.client_payload.pull_request.head.ref }}
3333

34-
- name: Install NodeJS 22.x
34+
- name: Install NodeJS
3535
uses: actions/setup-node@v4
3636
with:
37-
node-version: 22.x
37+
node-version: 24.x
3838

3939
- name: Install dependencies
4040
run: npm ci --omit=optional

0 commit comments

Comments
 (0)