diff --git a/.github/workflows/default.yaml b/.github/workflows/default.yaml index 77ec2e2..b22a396 100644 --- a/.github/workflows/default.yaml +++ b/.github/workflows/default.yaml @@ -22,6 +22,19 @@ jobs: run: | apt update && apt install git-lfs zstd + - name: 📥 Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: 📦 Install PNPM + uses: pnpm/action-setup@v3 + id: pnpm-install + with: + version: 8 + node_version: 20 + run_install: false + - name: 🔢 Calculate cache IDs run: | # Calculate cache IDs for Git LFS and PNPM @@ -38,19 +51,6 @@ jobs: path: .git/lfs key: ${{ runner.os }}-lfs-${{ env.LFS_CACHE_ID }} - - name: 📥 Install Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - - - name: 📦 Install PNPM - uses: pnpm/action-setup@v3 - id: pnpm-install - with: - version: 8 - node_version: 20 - run_install: false - - name: 🛠️ Cache PNPM dependencies uses: actions/cache@v4 with: