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 22413aa commit 46dbf85
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ jobs:
# This step should always run, even if previous steps fail
if: always()

# Step to send email with the zip report
- 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
echo "Sending email with zip report"
echo "This is the body of the email" | mutt -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()
if: success()

0 comments on commit 46dbf85

Please sign in to comment.