-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Node.js version to v22.7 instead of "latest"
This is a temprary fix until v22.8.0 is released due to a bug in v22.7.0: nodejs/node#54518
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ runs: | |
steps: | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'latest' | ||
node-version: '22.6' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
# setting fail-fast to false in an attempt to prevent this from happening | ||
fail-fast: false | ||
matrix: | ||
version: [18, 20, latest] | ||
version: [18, 20, 22.6] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -47,7 +47,7 @@ jobs: | |
integration-ci: | ||
strategy: | ||
matrix: | ||
version: [18, latest] | ||
version: [18, 22.6] | ||
framework: [cucumber, playwright, selenium, jest, mocha] | ||
runs-on: ubuntu-latest | ||
env: | ||
|
@@ -89,7 +89,7 @@ jobs: | |
# Important: This is outside the minimum supported version of dd-trace-js | ||
# Node > 16 does not work with [email protected] (not even without our plugin) | ||
# TODO: figure out what to do with this: we might have to deprecate support for [email protected] | ||
version: [16, latest] | ||
version: [16, 22.6] | ||
# 6.7.0 is the minimum version we support | ||
cypress-version: [6.7.0, latest] | ||
module-type: ['commonJS', 'esm'] | ||
|