Skip to content

Commit

Permalink
Initialisation Playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaret committed Aug 14, 2024
1 parent 47d273b commit 5679bad
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,19 @@ jobs:
- name: Execution des tests Playwright
run: npx playwright test
env:
BASE-URL: ${{ steps.vercel_preview_url.outputs.preview_url }}
- name: Mise à disposition des artefacts
BASE_URL: ${{ steps.vercel_preview_url.outputs.preview_url }}
- name: Mise à disposition des traces
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
name: Traces
path: playwright-report/
retention-days: 30
retention-days: 7
- name: Mise à disposition du rapport
uses: actions/upload-artifact@v4
if: always()
with:
name: Rapport de tests
path: playwright-report/index.html
retention-days: 7

0 comments on commit 5679bad

Please sign in to comment.