-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add nodejs 22.x as latest LTS (#999)
This patch: 1. Remove 18.x from actions. 2. Add latest 22.x into actions. Fix: #998
- Loading branch information
Showing
4 changed files
with
4 additions
and
6 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
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: [18.X, 20.X] | ||
node-version: [20.X, 22.X] | ||
steps: | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -26,9 +26,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
# Explicit node versions are used to workaround an error | ||
# where node-gyp fails due to some silly cacheing | ||
node-version: [18.16.0, 20.X] | ||
node-version: [22.X] | ||
steps: | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
|