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/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

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

The Node.js version in the publish workflow (24) is now inconsistent with the CI workflow at .github/workflows/nodejs.yml which uses version '20.x'. Consider updating both workflows to use the same Node.js version to ensure consistent build and test behavior across environments.

Suggested change
node-version: 24
node-version: '20.x'

Copilot uses AI. Check for mistakes.
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci
Expand Down