From 3efdb8d0f12a8daca3c7f9bc656eaed31420c0fd Mon Sep 17 00:00:00 2001 From: aviv-moataznabil Date: Thu, 25 Jul 2024 11:18:50 +0200 Subject: [PATCH] fix github action --- .github/workflows/playwright.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index d427ffd..d972303 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -22,4 +22,11 @@ jobs: - name: Run Playwright tests run: | - npx playwright test --reporter=html \ No newline at end of file + npx playwright test + + - name: Upload Playwright report + if: always() # This ensures that the report is uploaded even if tests fail + uses: actions/upload-artifact@v3 + with: + name: playwright-report + path: playwright-report