From c96b7ae963577ab15b03f658d475c4dafa09665a Mon Sep 17 00:00:00 2001 From: andrei-picus-tink Date: Thu, 8 Aug 2024 09:58:33 +0200 Subject: [PATCH] Install pnpm before Node --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index aa5bd79..4688eed 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,17 +7,17 @@ jobs: - name: Checkout uses: actions/checkout@v4.1.7 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 9 + - name: Install Node uses: actions/setup-node@v4.0.3 with: node-version: 20 cache: 'pnpm' - - name: Install pnpm - uses: pnpm/action-setup@v4 - with: - version: 9 - - name: Install deps run: pnpm install