Skip to content

Commit 9658a1d

Browse files
committed
fix: simplify Node setup in CI, remove potentially problematic cache
1 parent cc004aa commit 9658a1d

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,16 @@ jobs:
2424
fetch-depth: 0 # Essential for semantic-release to analyze history
2525
persist-credentials: false # Recommended practice
2626

27+
# Remove explicit Node setup - pnpm/action-setup handles it
28+
# - name: Setup Node.js
29+
# uses: actions/setup-node@v4
30+
# with:
31+
# node-version: 20
32+
# cache: 'pnpm'
33+
2734
- name: Setup pnpm
2835
uses: pnpm/action-setup@v4
2936
# Version is read from package.json's "packageManager" field
30-
# with:
31-
# version: 9
3237

3338
- name: Install dependencies
3439
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)