Skip to content

Commit dd28726

Browse files
committed
ChangedGithubActions
1 parent f7c43a0 commit dd28726

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/playwright.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ jobs:
4646
# Step to wait for the job to complete
4747
- name: Wait for job completion
4848
run: sleep 60s # Adjust the wait time as needed
49+
# This step should always run, even if previous steps fail
50+
if: always()
4951

5052
# Step to zip html-report folder
5153
- name: Zip HTML report
52-
run: zip -r html-report.zip html-report
54+
run: zip -r html-report.zip html-report
55+
# This step should always run, even if previous steps fail
56+
if: always()

0 commit comments

Comments
 (0)