Pump to Node 26.x#1497
Merged
minggangw merged 1 commit intoRobotWebTools:developfrom May 6, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates CI workflow matrices to adjust the Node.js versions used for Linux builds/tests, aligning (at least partially) with a move toward newer Node majors.
Changes:
- Linux x64 CI matrix: replaces Node 25.x testing with Node 26.x (keeps Node 24.x).
- Linux arm64 CI matrix: switches from a pinned Node 20.20.2 to a floating Node 20.x range.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/linux-x64-build-and-test.yml | Updates the x64 build/test matrix to include Node 26.x (and drop 25.x). |
| .github/workflows/linux-arm64-build-and-test.yml | Changes the arm64 build/test matrix from a pinned Node 20.20.2 to Node 20.x. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| fail-fast: false | ||
| matrix: | ||
| node-version: [24.X, 25.X] | ||
| node-version: [24.X, 26.X] |
| fail-fast: false | ||
| matrix: | ||
| node-version: [20.20.2] | ||
| node-version: [20.X] |
28 tasks
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates CI workflow matrices to adjust the Node.js versions used for Linux builds/tests, aligning (at least partially) with a move toward newer Node majors.
Changes:
Fix: #1458