Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.
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
10 changes: 9 additions & 1 deletion .github/workflows/ci-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,15 @@ jobs:
run: pnpm --filter muya-e2e exec playwright install --with-deps chromium firefox webkit

- name: 🎭 Run Playwright tests
run: pnpm e2e
# Exclude @perf-tagged tests on PR-time CI: their budgets were
# calibrated against a local dev box, not GHA ubuntu-latest +
# Vite dev server. Every browser overshoots there (chromium
# ~70s, firefox ~65s, webkit ~115s against the 60s budget),
# which causes deterministic fails and pushes the job past
# its 15min cap once retries kick in. The plan to move @perf
# to a nightly schedule against a production bundle is already
# documented in e2e/tests/stability/perf.spec.ts.
run: pnpm --filter muya-e2e exec playwright test --grep-invert "@perf"
env:
CI: '1'

Expand Down
Loading