Skip to content

Commit

Permalink
Upload reports coverage in Github UI
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Dec 10, 2024
1 parent 6946b14 commit 024d206
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
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 }}

0 comments on commit 024d206

Please sign in to comment.