Skip to content

Commit 4d22124

Browse files
authored
fix(tests): preventing test failure slipthrougs to main
The [checks for a PR](https://github.com/db-ux-design-system/core-web/actions/runs/17416146706/job/49445191771?pr=4904) run through smoothly, but it's results would lead to a [fail on `main` branch](https://github.com/db-ux-design-system/core-web/actions/runs/17421313490/job/49460006681). We need to prevent this to happen.
1 parent 72ac3ab commit 4d22124

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/02-e2e-showcases.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ jobs:
7777
# We test everything for patternhub and main branch
7878
- name: 👩‍🔬 Test showcase with Playwright 🎭
7979
shell: bash
80-
if: github.event.pull_request == null
80+
# TODO: we need to find a more stable solution
81+
# if: github.event.pull_request == null
8182
env:
8283
NEXT_PUBLIC_BASE_PATH: ${{ inputs.path }}
8384
run: |

0 commit comments

Comments
 (0)