Skip to content

Commit

Permalink
ChangedGithubActions
Browse files Browse the repository at this point in the history
  • Loading branch information
akshayp7 committed Feb 24, 2024
1 parent f7c43a0 commit dd28726
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ jobs:
# Step to wait for the job to complete
- name: Wait for job completion
run: sleep 60s # Adjust the wait time as needed
# This step should always run, even if previous steps fail
if: always()

# Step to zip html-report folder
- name: Zip HTML report
run: zip -r html-report.zip html-report
run: zip -r html-report.zip html-report
# This step should always run, even if previous steps fail
if: always()

0 comments on commit dd28726

Please sign in to comment.