Skip to content

Commit f4db774

Browse files
committed
👷(CI) remove test-e2e-other-browser job
We don't maintain the test-e2e-other-browser job, and it often fails due to various reasons. To avoid unnecessary noise in our CI pipeline, we will remove this job. We are adding workflow_dispatch trigger to the e2e-tests workflow, so that we can still run e2e tests on other browsers when needed from the Github actions UI.
1 parent 593c98c commit f4db774

3 files changed

Lines changed: 18 additions & 8 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
name: E2E Tests
22

33
on:
4+
workflow_dispatch:
5+
inputs:
6+
browser-name:
7+
description: "Name used for cache keys and artifact names (e.g. chromium, other-browser)"
8+
required: false
9+
default: "other-browser"
10+
type: string
11+
projects:
12+
description: "Playwright --project flags (e.g. --project=firefox --project=webkit)"
13+
required: false
14+
default: "--project=firefox --project=webkit"
15+
type: string
16+
timeout-minutes:
17+
description: "Job timeout in minutes"
18+
required: false
19+
default: "30"
20+
type: string
421
workflow_call:
522
inputs:
623
browser-name:

.github/workflows/impress-frontend.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,6 @@ jobs:
7373
projects: --project=chromium
7474
timeout-minutes: 25
7575

76-
test-e2e-other-browser:
77-
needs: test-e2e-chromium
78-
uses: ./.github/workflows/e2e-tests.yml
79-
with:
80-
browser-name: other-browser
81-
projects: --project=firefox --project=webkit
82-
timeout-minutes: 30
83-
8476
bundle-size-check:
8577
runs-on: ubuntu-latest
8678
needs: install-dependencies

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to
88

99
### Changed
1010

11+
- 👷(CI) remove test-e2e-other-browser job #2404
1112
- ♿️(frontend) use heading element for pinned documents section title #2380
1213

1314
## [v5.2.1] - 2026-06-05

0 commit comments

Comments
 (0)