We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 552e825 commit c3b4a9cCopy full SHA for c3b4a9c
1 file changed
.github/workflows/publish.yml
@@ -92,6 +92,20 @@ jobs:
92
make_latest: true
93
allow_updates: true
94
95
+ - name: Verify OIDC auth & config
96
+ run: |
97
+ echo ">>> Effective npm configs"
98
+ npm config list
99
+ echo ">>> Show possible .npmrc files"
100
+ (echo "~/.npmrc:" && cat ~/.npmrc) || true
101
+ (echo ".npmrc in repo:" && cat .npmrc) || true
102
+ echo ">>> npm whoami (should work with OIDC)"
103
+ npm whoami --registry=https://registry.npmjs.org || true
104
+
105
+ - name: Remove any legacy token (safety)
106
107
+ npm config delete //registry.npmjs.org/:_authToken || tru
108
109
- name: Install dependencies
110
run: npm ci
111
0 commit comments