You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
npx playwright test || echo "Tests failed" > test-failure.log
32
+
33
+
- name: Upload Playwright Report
34
+
if: always()
35
+
uses: actions/upload-artifact@v4
36
+
with:
37
+
name: reports
38
+
path: packages/dashboard/playwright/reports/
39
+
retention-days: 7
40
+
- name: Slack Notification on Failure
41
+
if: failure()
42
+
run: |
43
+
curl -X POST -H 'Content-type: application/json' \
44
+
--data '{"text":"🚨 Playwright tests failed after deployment to '${{ github.event.deployment_status.environment }}'. Check the reports for details."}' \
0 commit comments