Skip to content

Commit 664e1f4

Browse files
chore: pin node-lts tests to 22.11.0 (#5279)
* chore: pin node-lts tests to 22.11.0 * Also update other 22s
1 parent a87fb11 commit 664e1f4

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/mocha.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
smoke:
2323
uses: ./.github/workflows/npm-script.yml
2424
with:
25-
node-versions: '14,22,lts/*'
25+
# The 22.11.0 is instead of lts per https://github.com/mochajs/mocha/issues/5278
26+
node-versions: '18,20,22.11.0'
2627
npm-script: test-smoke
2728

2829
test-node-lts:
@@ -64,7 +65,8 @@ jobs:
6465
coverage: false
6566
with:
6667
os: 'ubuntu-latest,windows-latest'
67-
node-versions: '14,16,18,20,22'
68+
# The 22.11.0 is instead of 22 per https://github.com/mochajs/mocha/issues/5278
69+
node-versions: '14,16,18,20,22.11.0'
6870
npm-script: test-node:${{ matrix.test-part }}
6971
coverage: ${{ matrix.coverage }}
7072

.github/workflows/npm-script.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ jobs:
5454
strategy:
5555
fail-fast: false
5656
matrix:
57-
node_version: ${{ fromJson(needs.resolve-inputs.outputs.nodeVersions || '["lts/*"]') }}
57+
# The 22.11.0 is instead of "lts/*" per https://github.com/mochajs/mocha/issues/5278
58+
node_version: ${{ fromJson(needs.resolve-inputs.outputs.nodeVersions || '["22.11.0"]') }}
5859
os: ${{ fromJson(needs.resolve-inputs.outputs.os || '["ubuntu-latest"]') }}
5960
browser: ${{ fromJson(needs.resolve-inputs.outputs.browsers || '[""]') }}
6061
steps:

.github/workflows/release-please.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
show-progress: false
3939
- uses: actions/setup-node@v4
4040
with:
41-
node-version: lts/*
41+
# The 22.11.0 is instead of lts per https://github.com/mochajs/mocha/issues/5278
42+
node-version: '22.11.0'
4243
registry-url: 'https://registry.npmjs.org'
4344

4445
- name: Install dependencies

0 commit comments

Comments
 (0)