Skip to content

Commit

Permalink
Disable e2e CI check for now
Browse files Browse the repository at this point in the history
  • Loading branch information
evadecker committed Sep 7, 2024
1 parent f5baaba commit 63f3dc4
Showing 1 changed file with 26 additions and 25 deletions.
51 changes: 26 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 63f3dc4

Please sign in to comment.