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: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
Copy link

Copilot AI Nov 30, 2025

Choose a reason for hiding this comment

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

The node-version should be specified as a string (e.g., '24' or '24.x') rather than a number. While numeric values are accepted, using a string is the recommended practice in GitHub Actions and ensures consistent behavior across different YAML parsers.

Suggested change
node-version: 24
node-version: '24'

Copilot uses AI. Check for mistakes.
- run: npm install
- run: npm run release
- run: npm publish --access public
Expand Down