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
9 changes: 4 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
registry-url: https://registry.npmjs.org/
cache: npm
node-version: '24'
registry-url: 'https://registry.npmjs.org'
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

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

cache: npm was removed from setup-node. This will typically slow down npm ci runs and increase workflow time/cost; if there’s no specific reason to drop caching, re-enable cache: npm (and match the caching approach used in .github/workflows/nodejs.yml).

Suggested change
registry-url: 'https://registry.npmjs.org'
registry-url: 'https://registry.npmjs.org'
cache: npm

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

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

registry-url changed from https://registry.npmjs.org/ to https://registry.npmjs.org and is now quoted, which diverges from the existing workflow (nodejs.yml). If this isn’t intentional, keep the exact same registry URL format across workflows to avoid subtle auth/caching differences.

Suggested change
registry-url: 'https://registry.npmjs.org'
registry-url: https://registry.npmjs.org/

Copilot uses AI. Check for mistakes.
- run: npm ci
- run: npm run build
- run: npm test
Expand Down
Loading