Skip to content

Commit c895f1e

Browse files
tw93claude
andcommitted
🐛 Fix GitHub Actions workflow to use pnpm instead of npm
Update code-quality.yml to properly handle pnpm lockfile by installing pnpm before setup-node cache configuration. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 220a1f3 commit c895f1e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/code-quality.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23+
- name: Install pnpm
24+
uses: pnpm/action-setup@v4
25+
with:
26+
version: latest
27+
2328
- name: Setup Node.js
2429
uses: actions/setup-node@v4
2530
with:
2631
node-version: "20"
2732
cache: "pnpm"
2833

29-
- name: Install pnpm
30-
uses: pnpm/action-setup@v4
31-
with:
32-
version: latest
33-
3434
- name: Install dependencies
3535
run: pnpm install --frozen-lockfile
3636

0 commit comments

Comments
 (0)