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 dd28726 commit 22413aa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,11 @@ jobs:
- name: Zip HTML report
run: zip -r html-report.zip html-report
# This step should always run, even if previous steps fail
if: always()

- name: Send email with zip report
run: |
echo "Sending email with Playwright html zip report"
echo "Playwright Test Case Report" | mail -s "Subject: Playwright Test Report" -A html-report.zip codendeavor@gmail.com
# This step should only run if the previous steps were successful
if: always()

0 comments on commit 22413aa

Please sign in to comment.