Skip to content

Commit 93ec396

Browse files
fix(ci): run Firefox in headed mode to bypass headless CDP issue
1 parent 24308be commit 93ec396

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/cross-browser.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
os: [windows-latest]
36-
browser: [chrome, edge, firefox]
36+
browser: [chrome, edge]
37+
headed: [false]
38+
include:
39+
- os: windows-latest
40+
browser: firefox
41+
headed: true
3742

3843
steps:
3944
- name: Checkout code
@@ -50,6 +55,7 @@ jobs:
5055
uses: cypress-io/github-action@v6
5156
with:
5257
browser: ${{ matrix.browser }}
58+
headed: ${{ matrix.headed }}
5359
start: npm start
5460
wait-on: 'http://127.0.0.1:3000'
5561
spec: cypress/e2e/smoke-bs.cy.ts

0 commit comments

Comments
 (0)