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.
1 parent 69b6a6a commit f32ee6bCopy full SHA for f32ee6b
1 file changed
.github/workflows/publish.yml
@@ -18,14 +18,26 @@ jobs:
18
uses: pnpm/action-setup@v4
19
20
- name: Setup Node.js
21
- uses: actions/setup-node@v4
+ uses: actions/setup-node@v6
22
with:
23
node-version: "22"
24
registry-url: "https://registry.npmjs.org"
25
26
- name: Install npm@latest
27
run: npm install -g npm@latest
28
29
+ - name: Debug - Show versions and config
30
+ run: |
31
+ echo "=== npm version ==="
32
+ npm --version
33
+ echo "=== pnpm version ==="
34
+ pnpm --version
35
+ echo "=== .npmrc contents ==="
36
+ cat ~/.npmrc || echo "No ~/.npmrc"
37
+ cat .npmrc || echo "No .npmrc in project"
38
+ echo "=== npm config list ==="
39
+ npm config list
40
+
41
- name: Install dependencies
42
run: pnpm install --frozen-lockfile
43
0 commit comments