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
5 changes: 4 additions & 1 deletion .github/workflows/publish-npm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
- uses: ./.github/workflows/setup
# Trusted Publishing requires npm >= 11.5.1; the pinned Node
# runtime ships an older npm, so upgrade it before publishing.
- run: npm install -g npm@latest
# Pinned to major 11: npm@latest moved to 12.0.0, which requires
# Node ^22.22.2 || ^24.15.0 || >=26 and EBADENGINEs on our pinned
# Node (.nvmrc), breaking every publish.
- run: npm install -g npm@11
# Run via npm so node_modules/.bin is on PATH (patch-npm-version.ts
# is executed through its ts-node shebang).
- run: npm run pub:npm
Loading