File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 55 workflows :
66 - " QE LinkChecker"
77 - " Check for Broken Links"
8+ - " UI validation on prod"
89 types : [completed]
910
1011permissions :
Original file line number Diff line number Diff line change 1+ name : UI validation on prod
2+ on :
3+ workflow_dispatch :
4+ schedule :
5+ - cron : " 0 * * * *"
6+
7+ jobs :
8+ run-playwright-tests :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v4
12+ - uses : actions/setup-node@v4
13+ with :
14+ node-version : lts/*
15+ - name : Install dependencies
16+ run : npm ci
17+ - name : Install Playwright Browsers
18+ run : npx playwright install --with-deps
19+ - name : Run Playwright tests
20+ run : npx playwright test --retries=2
21+ - uses : actions/upload-artifact@v4
22+ if : ${{ !cancelled() }}
23+ with :
24+ name : playwright-report
25+ path : tests/playwright-report/
26+ retention-days : 30
27+ - uses : actions/upload-artifact@v4
28+ if : ${{ !cancelled() }}
29+ with :
30+ name : test-results
31+ path : tests/test-results/
32+ retention-days : 30
You can’t perform that action at this time.
0 commit comments