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 @@ -70,7 +70,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'
Comment on lines 71 to 74
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 description says Node.js was updated from 22 to 20 for compatibility, but this change only affects the npm-publish-latest job; the build matrix still runs on 22 and 24 and npm-publish-dev still passes node_version: 22. Please either update the PR description to reflect the narrower scope, or align the other workflow Node versions if the intent is to downgrade CI more broadly.

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