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 @@ -77,7 +77,7 @@ jobs:
name: build
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 20 # for npm@latest
registry-url: 'https://registry.npmjs.org'
- name: Update npm to latest (required for OIDC)
Comment on lines 78 to 82
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.

The PR title/description suggest the CI workflow is moving from Node 22 to Node 20, but this change only updates the Node version for the npm-publish-latest job. The build job matrix still runs on 22/24 and the publish artifact is still produced only when matrix.node-version == 22 (and npm-publish-dev still uses 22). Either update the workflow consistently (matrix + artifact condition + publish-dev) or adjust the PR title/description to clarify that only the release publishing job is pinned to Node 20.

Copilot uses AI. Check for mistakes.
run: npm install -g npm@latest
Expand Down
Loading