Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: disable e2e tests (for now) #3571

Merged
merged 2 commits into from
Jun 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 16 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,22 @@ jobs:
- name: Run Tests
run: pnpm -r test run

- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
working-directory: ./apps/tlon-web

- name: Run E2E Tests for Groups
run: pnpm e2e
working-directory: ./apps/tlon-web

- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: ./apps/tlon-web/playwright-report/
retention-days: 30
#NOTE e2e tests disabled temporarily, please investigate why they fail

# - name: Install Playwright Browsers
# run: pnpm exec playwright install --with-deps
# working-directory: ./apps/tlon-web

# - name: Run E2E Tests for Groups
# run: pnpm e2e
# working-directory: ./apps/tlon-web

# - uses: actions/upload-artifact@v3
# if: always()
# with:
# name: playwright-report
# path: ./apps/tlon-web/playwright-report/
# retention-days: 30

- name: Build
run: pnpm build
Expand Down