diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 174bd5a5..4695786e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,6 +6,9 @@ on: - master - main +env: + PNPM_VERSION: 8.15.1 + jobs: build-and-deploy: runs-on: ubuntu-latest @@ -13,6 +16,17 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3.6.0 + - name: Install pnpm + uses: pnpm/action-setup@v2.4.0 + with: + version: ${{ env.PNPM_VERSION }} + + - name: Install Node + uses: actions/setup-node@v3 + with: + node-version: 16.x + cache: pnpm + - name: Install and Build 🔧 run: | pnpm install