We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a118da8 commit 0ef352aCopy full SHA for 0ef352a
.github/workflows/test.yml
@@ -83,8 +83,25 @@ jobs:
83
node-version: 22
84
- name: Install Playwright Browsers
85
run: ./bin/install-playwright
86
+ - name: Install Codecovbash
87
+ uses: perl-actions/install-with-cpm@v1
88
+ with:
89
+ install: |
90
+ Devel::Cover
91
+ Devel::Cover::Report::Codecovbash
92
+ sudo: true
93
- name: Run Playwright tests
94
run: npx playwright test
95
+ env:
96
+ HARNESS_ACTIVE: 1
97
+ PERL5OPT: '-MDevel::Cover=+ignore,^local/|^templates/|^t/|yaml$'
98
+ - name: Generate Codecov report
99
+ run: cover -report codecovbash
100
+ - uses: codecov/codecov-action@v5
101
102
+ fail_ci_if_error: true
103
+ file: ./cover_db/codecov.json
104
+ token: ${{ secrets.CODECOV_TOKEN }}
105
test:
106
runs-on: ubuntu-24.04
107
name: Dockerless
0 commit comments