We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents df2242c + 2d4890d commit 4531a50Copy full SHA for 4531a50
.github/workflows/release.yml
@@ -136,6 +136,22 @@ jobs:
136
echo "✅ Extension files verified in package"
137
echo "📦 Extension files that will be published:"
138
find src/extension -type f | head -20
139
+
140
+ - name: npm publish preflight (auth + registry)
141
+ env:
142
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
143
+ run: |
144
+ set -euo pipefail
145
+ echo "=== Toolchain ==="
146
+ node --version
147
+ npm --version
148
+ echo ""
149
+ echo "=== Registry ==="
150
+ npm config get registry
151
+ npm ping --registry https://registry.npmjs.org
152
153
+ echo "=== Auth ==="
154
+ npm whoami --registry https://registry.npmjs.org
155
156
- name: Publish to npm
157
run: |
0 commit comments