ui/frontend: cap Playwright at 4 workers, retry 4 times #8

Merged
developer merged 3 commits from feature/playwright-tuning into development 2026-05-15 06:49:06 +00:00
Showing only changes of commit 6e6186a571 - Show all commits
+3 -3
View File
@@ -19,10 +19,10 @@ on:
# Playwright launches its own `pnpm dev` on :5173. In host-mode the
# runner shares the host's port namespace, so two parallel ui-test
# jobs (e.g. a push event racing with a pull_request event for the
# same commit) collide on EADDRINUSE. Group by branch/ref and cancel
# the in-progress run so only one ui-test is alive at a time per ref.
# same commit) collide on EADDRINUSE. Group by the head commit so
# push and pull_request events for the same sha share one bucket.
concurrency:
group: ui-test-${{ gitea.ref }}
group: ui-test-${{ gitea.event.pull_request.head.sha || gitea.sha }}
cancel-in-progress: true
jobs: