diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 559889d..df90603 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,6 +14,12 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 + - uses: pnpm/action-setup@v2 + name: Install pnpm + with: + version: 8 + run_install: false + - name: Use Node ${{ matrix.node }} uses: actions/setup-node@v4 with: @@ -21,12 +27,6 @@ jobs: cache: pnpm cache-dependency-file: pnpm-lock.yaml - - uses: pnpm/action-setup@v2 - name: Install pnpm - with: - version: 8 - run_install: false - - name: Install dependencies run: pnpm install