Skip to content
Open
Show file tree
Hide file tree
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
18 changes: 8 additions & 10 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,11 @@ jobs:
- name: Run Playwright tests
run: npx playwright test
continue-on-error: true
- name: Generate Allure Report
if: always()
run: npm run allure-report
- uses: actions/upload-artifact@v6
if: always()
with:
name: playwright-test-results
path: test-results/
- uses: actions/upload-artifact@v6
if: always()
with:
name: allure-test-results
path: allure-report/
- name: Publish JUnit Report
uses: mikepenz/action-junit-report@v6
if: always() # always run even if the previous step fails
Expand All @@ -47,14 +39,20 @@ jobs:
ref: gh-pages
path: gh-pages

- name: Allure Report action from marketplace
uses: simple-elf/allure-report-action@master
- name: Allure Report with history
uses: yuvalgabay/allure-v3-report-action@v3.2.2
if: always()
with:
allure_results: allure-results
allure_history: allure-history
keep_reports: 20

- uses: actions/upload-artifact@v6
if: always()
with:
name: allure-test-results
path: allure-history/

- name: Deploy report to Github Pages
if: always()
uses: peaceiris/actions-gh-pages@v4
Expand Down
Loading