From 07d51eb47dae6b5f6c233bc61842dfcd26cab3f5 Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Fri, 25 Oct 2024 20:48:35 +0100 Subject: [PATCH] if we ignore ie11 errors --- .github/workflows/testcafe.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testcafe.yml b/.github/workflows/testcafe.yml index fb90e63c8..55c8933a9 100644 --- a/.github/workflows/testcafe.yml +++ b/.github/workflows/testcafe.yml @@ -27,12 +27,16 @@ jobs: include: - browser: 'chrome:headless' name: Chrome + cli: '' - browser: 'firefox:headless' name: Firefox + cli: '' - browser: 'browserstack:ie' name: IE11 + cli: '--skip-js-errors' - browser: 'browserstack:safari' name: Safari + cli: '' steps: - uses: actions/checkout@v4 @@ -58,7 +62,7 @@ jobs: BRANCH_NAME: ${{ github.head_ref || github.ref_name }} RUN_ID: ${{ github.run_id }} BROWSER: ${{ matrix.browser }} - run: pnpm testcafe ${{ matrix.browser }} --stop-on-first-fail + run: pnpm testcafe ${{ matrix.browser }} --stop-on-first-fail ${{ matrix.cli }} - name: Check ${{ matrix.name }} events run: pnpm check-testcafe-results