From 61e565d358579626a827e82aa217d8b3b6813cd5 Mon Sep 17 00:00:00 2001 From: Pandipipas Date: Fri, 8 May 2026 19:18:06 +0200 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce6e9b2..5c9c963 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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