From 61324bd2ffd9c4c314baccbfecf3eb92a60e6a6a Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 31 Jan 2026 08:33:09 +0000 Subject: [PATCH] fix(e2e): include browser name in job titles for visibility Job names now show: 'E2E chromium (Shard 1/4)' instead of 'E2E Tests (Shard 1/4)' Makes it easier to identify which browser/shard is passing or failing --- .github/workflows/e2e-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index ca64cbea..e4f91c90 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -133,7 +133,7 @@ jobs: # Run tests in parallel shards e2e-tests: - name: E2E Tests (Shard ${{ matrix.shard }}/${{ matrix.total-shards }}) + name: E2E ${{ matrix.browser }} (Shard ${{ matrix.shard }}/${{ matrix.total-shards }}) runs-on: ubuntu-latest needs: build timeout-minutes: 30