From 8bb9a60e93c778115adc30a7689308e3133a8136 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Tue, 29 Jul 2025 19:16:31 +0200 Subject: [PATCH] Move pnpm installation before dependency installation --- .github/workflows/nuxthub.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nuxthub.yml b/.github/workflows/nuxthub.yml index 8baa766..af22269 100644 --- a/.github/workflows/nuxthub.yml +++ b/.github/workflows/nuxthub.yml @@ -15,10 +15,13 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - + - name: Install build tools run: sudo apt-get update && sudo apt-get install -y build-essential + - name: Install pnpm + uses: pnpm/action-setup@v4 + - name: Install dependencies run: pnpm install --unsafe-perm @@ -28,9 +31,6 @@ jobs: - name: Build run: pnpm build - - name: Install pnpm - uses: pnpm/action-setup@v4 - - name: Install Node.js uses: actions/setup-node@v4 with: