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 @@ -75,7 +75,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 76 to 79
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 suggests the CI workflow’s Node.js version was changed from 22 to 20, but this change only affects the npm-publish-latest job. The main build job still tests Node 22/24 and npm-publish-dev still pins node_version: 22. Please either update the PR metadata to reflect the narrower scope or align the other jobs/versions as intended.

Copilot uses AI. Check for mistakes.
- name: Update npm to latest (required for OIDC)
run: npm install -g npm@latest
Comment on lines +78 to 81
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.

With npm-publish-latest running on Node 20, CI no longer validates the publish pipeline against the same Node version it publishes with (the build/test matrix is 22/24, and the release artifact is currently produced only when matrix.node-version == 22). Consider adding Node 20 to the test matrix and/or producing the publish artifact from the Node version you intend to support for publishing to avoid version-specific build/publish failures.

Copilot uses AI. Check for mistakes.
Expand Down
Loading