diff --git a/.github/workflows/deploy-pr-preview.yml b/.github/workflows/deploy-pr-preview.yml index 75c90f8..a8f12f2 100644 --- a/.github/workflows/deploy-pr-preview.yml +++ b/.github/workflows/deploy-pr-preview.yml @@ -1,5 +1,4 @@ name: Deploy PR preview - on: pull_request: types: @@ -8,20 +7,24 @@ on: - synchronize concurrency: preview-${{ github.ref }} - jobs: deploy-preview: runs-on: ubuntu-22.04 steps: - name: Checkout Repository uses: actions/checkout@v4 - + - name: Enable CorePack + run: corepack enable + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "18" + check-latest: true - name: Install and Build run: | - npm install - npm run build - + pnpm install + pnpm run build - name: Deploy PR Preview uses: rossjrw/pr-preview-action@v1 with: - source-dir: ./build/ \ No newline at end of file + source-dir: ./build/