Skip to content

Commit f32ee6b

Browse files
committed
Use setup-node@v6, add debug output
1 parent 69b6a6a commit f32ee6b

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,26 @@ jobs:
1818
uses: pnpm/action-setup@v4
1919

2020
- name: Setup Node.js
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: "22"
2424
registry-url: "https://registry.npmjs.org"
2525

2626
- name: Install npm@latest
2727
run: npm install -g npm@latest
2828

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+
2941
- name: Install dependencies
3042
run: pnpm install --frozen-lockfile
3143

0 commit comments

Comments
 (0)