We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 721bb5e commit b07bb16Copy full SHA for b07bb16
.github/workflows/continuous-integration-workflow.yml
@@ -27,10 +27,15 @@ jobs:
27
node-version: ${{ matrix.node-version }}
28
- run: npm ci --ignore-scripts
29
- run: npm run test:ci
30
- - run: npm install codecov -g
31
- if: ${{ matrix.node-version == 'current' }}
32
- - run: codecov -f ./coverage/clover.xml -t ${{ secrets.CODECOV_TOKEN }} --commit=$GITHUB_SHA --branch=${GITHUB_REF##*/}
33
+ - name: Upload coverage to Codecov
+ uses: codecov/codecov-action@v5
+ if: ${{ matrix.node-version == 'current' && github.actor != 'dependabot[bot]' }}
+ with:
34
+ files: ./coverage/clover.xml
35
+ directory: ./coverage/lcov-report/
36
+ token: ${{ secrets.CODECOV_TOKEN }}
37
+ verbose: true
38
+ fail_ci_if_error: true
39
build:
40
name: Build
41
runs-on: ubuntu-latest
0 commit comments