Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
name: build
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 20 # required for OIDC npm@latest
registry-url: 'https://registry.npmjs.org'
Comment on lines 83 to 86
Copy link

Copilot AI Apr 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR title/description say CI is moving from Node 22 to 20 for compatibility, but only the npm-publish-latest job is pinned to Node 20. The build/test matrix still runs on 22 and 24 (and the artifact used for publishing is produced under Node 22), so Node 20 compatibility isn’t validated. Either add Node 20 to the build matrix / align the artifact build version with the publish job, or update the PR title/description to reflect that this change is only for the publish step.

Copilot uses AI. Check for mistakes.
- name: Update npm to latest (required for OIDC)
run: npm install -g npm@latest
Expand Down
Loading