Skip to content

Commit c13776e

Browse files
committed
Workflow: Improve error handling on playwright
1 parent 435f4c3 commit c13776e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
id: test-ui
3333
run: |
3434
cd tests && npx playwright test | tee output.log
35-
if grep -q "failed" output.log; then
35+
if grep -E "failed|Error" output.log; then
3636
echo "Playwright tests failed. Please view the Playwright report to see full error."
3737
exit 1
3838
fi

0 commit comments

Comments
 (0)