diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c2811f0..a06d1a3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,13 @@ jobs: run: npx playwright install --with-deps - name: Run Playwright tests run: npx playwright test - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v5 + - uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} with: - token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + name: playwright-report + path: playwright-report/ + retention-days: 30 + # - name: Upload coverage reports to Codecov + # uses: codecov/codecov-action@v5 + # with: + # token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file