Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ name: Pay UI Test Automation
on:
push:
branches: [ feature-nuxt-v3-upgrade ]
pull_request:
branches: [ feature-nuxt-v3-upgrade ]
workflow_dispatch: {}
schedule:
# Runs Mon-Fri at 11:00 AM Eastern Standard Time (fixed UTC-5 -> 16:00 UTC)
Expand All @@ -32,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web/pay-ui/test-automation/test-automation
working-directory: web/pay-ui/test-automation
env:
TEST_USERNAME_BCSC: ${{ secrets.TEST_USERNAME_BCSC }}
TEST_PASSWORD_BCSC: ${{ secrets.TEST_PASSWORD_BCSC }}
Expand All @@ -56,23 +58,23 @@ jobs:
if: ${{ !cancelled() }}
with:
name: allure-report
path: web/pay-ui/test-automation/test-automation/allure-report/
path: web/pay-ui/test-automation/allure-report/
retention-days: 30
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-html-report
path: web/pay-ui/test-automation/test-automation/playwright-report/
path: web/pay-ui/test-automation/playwright-report/
retention-days: 30
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: test-results
path: web/pay-ui/test-automation/test-automation/test-results/
path: web/pay-ui/test-automation/test-results/
retention-days: 30
- name: Publish HTML Report
if: ${{ !cancelled() }}
uses: daun/playwright-report-summary@v3
with:
report-file: web/pay-ui/test-automation/test-automation/playwright-report/results.json
report-file: web/pay-ui/test-automation/playwright-report/results.json
github-token: ${{ secrets.GITHUB_TOKEN }}.
Loading