diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9cdc6cf..5a4cc98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,34 +36,35 @@ jobs: - name: Biome Linter, Formatter, and Import Sorter run: pnpm biome ci - e2e: - name: End-to-end Test - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 + # Enable this once preview deploys are working and we can run on the preview directly + # e2e: + # name: End-to-end Test + # runs-on: ubuntu-latest + # steps: + # - name: Checkout + # uses: actions/checkout@v4 - - name: Setup PNPM - uses: pnpm/action-setup@v4 + # - name: Setup PNPM + # uses: pnpm/action-setup@v4 - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: "pnpm" + # - name: Setup Node + # uses: actions/setup-node@v4 + # with: + # node-version: 20 + # cache: "pnpm" - - name: Install dependencies - run: pnpm install + # - name: Install dependencies + # run: pnpm install - - name: Install Playwright - run: pnpm exec playwright install --with-deps + # - name: Install Playwright + # run: pnpm exec playwright install --with-deps - - name: Run Playwright end-to-end tests - run: pnpm test:e2e + # - name: Run Playwright end-to-end tests + # run: pnpm test:e2e - - uses: actions/upload-artifact@v4 - if: always() - with: - name: playwright-report - path: playwright-report/ - retention-days: 30 + # - uses: actions/upload-artifact@v4 + # if: always() + # with: + # name: playwright-report + # path: playwright-report/ + # retention-days: 30