diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 3c1b9ceaf0..9f3427a0ad 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -175,8 +175,10 @@ jobs: - name: Install browser dependencies run: yarn playwright install-deps + # This step must not fail, so we define a fallback, which will succeed, even if + # the visual regression tests failed. This will be evaluated in the secure workflow. - name: Run visual regression tests - run: yarn test:visual-regression + run: yarn test:visual-regression || true env: NODE_ENV: production - name: Prepare failed screenshot artifacts