Fix CI pnpm setup order.

Install pnpm before enabling setup-node pnpm caching so GitHub Actions can resolve the pnpm executable during checks.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-08 19:18:06 +02:00
parent 8040b4fe51
commit 61e565d358
+5 -5
View File
@@ -23,17 +23,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 11.0.8
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 11.0.8
- name: Install dependencies
run: pnpm install --frozen-lockfile