We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb665af + 9445a3b commit 25d33a8Copy full SHA for 25d33a8
1 file changed
.github/workflows/publish-npm.yaml
@@ -24,7 +24,10 @@ jobs:
24
- uses: ./.github/workflows/setup
25
# Trusted Publishing requires npm >= 11.5.1; the pinned Node
26
# runtime ships an older npm, so upgrade it before publishing.
27
- - run: npm install -g npm@latest
+ # Pinned to major 11: npm@latest moved to 12.0.0, which requires
28
+ # Node ^22.22.2 || ^24.15.0 || >=26 and EBADENGINEs on our pinned
29
+ # Node (.nvmrc), breaking every publish.
30
+ - run: npm install -g npm@11
31
# Run via npm so node_modules/.bin is on PATH (patch-npm-version.ts
32
# is executed through its ts-node shebang).
33
- run: npm run pub:npm
0 commit comments