Skip to content

Commit 9adb5e6

Browse files
authored
ci: add node.js 25 to test matrix (#4626)
1 parent dc5802d commit 9adb5e6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,19 @@ jobs:
5454
run: npm run lint
5555

5656
test:
57-
name: Test ${{ matrix.node-version == '24' && matrix.runs-on == 'ubuntu-latest' && 'and Coverage ' || ''}}with Node.js ${{ matrix.node-version }} on ${{ matrix.runs-on }}
57+
name: Test ${{ (matrix.node-version == '24' || matrix.node-version == '25') && matrix.runs-on == 'ubuntu-latest' && 'and Coverage ' || ''}}with Node.js ${{ matrix.node-version }} on ${{ matrix.runs-on }}
5858
strategy:
5959
fail-fast: false
6060
max-parallel: 0
6161
matrix:
62-
node-version: ['20', '22', '24']
62+
node-version: ['20', '22', '24', '25']
6363
runs-on: ['ubuntu-latest', 'windows-latest', 'macos-latest']
6464
exclude:
6565
- node-version: '20'
6666
runs-on: windows-latest
6767
uses: ./.github/workflows/nodejs.yml
6868
with:
69-
codecov: ${{ matrix.node-version == '24' && matrix.runs-on == 'ubuntu-latest' }}
69+
codecov: ${{ (matrix.node-version == '24' || matrix.node-version == '25') && matrix.runs-on == 'ubuntu-latest' }}
7070
node-version: ${{ matrix.node-version }}
7171
runs-on: ${{ matrix.runs-on }}
7272
secrets: inherit
@@ -77,7 +77,7 @@ jobs:
7777
fail-fast: false
7878
max-parallel: 0
7979
matrix:
80-
node-version: ['24']
80+
node-version: ['24', '25']
8181
runs-on: ['ubuntu-latest']
8282
uses: ./.github/workflows/nodejs.yml
8383
with:
@@ -92,7 +92,7 @@ jobs:
9292
fail-fast: false
9393
max-parallel: 0
9494
matrix:
95-
node-version: ['20', '22', '24']
95+
node-version: ['20', '22', '24', '25']
9696
runs-on: ubuntu-latest
9797
timeout-minutes: 120
9898
steps:
@@ -199,7 +199,7 @@ jobs:
199199
fail-fast: false
200200
max-parallel: 0
201201
matrix:
202-
node-version: ['20', '22', '24']
202+
node-version: ['20', '22', '24', '25']
203203
runs-on: ['ubuntu-latest']
204204
with:
205205
node-version: ${{ matrix.node-version }}

0 commit comments

Comments
 (0)