From 37b740f04296c2342d7c9bd84289ad3d14e8c337 Mon Sep 17 00:00:00 2001 From: Lukas Spirig Date: Tue, 25 Jun 2024 14:07:06 +0200 Subject: [PATCH] fix: review --- .github/workflows/continuous-integration.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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