diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index 66c44e0..0c00ff2 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -10,6 +10,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - uses: pnpm/action-setup@v2 + with: + version: 8 + - name: Setup NodeJS uses: actions/setup-node@v3 with: @@ -17,9 +21,6 @@ jobs: cache: 'pnpm' cache-dependency-path: package-lock.json - - name: Install pnpm - run: npm install -g pnpm - - name: Install dependencies run: pnpm install