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 721bb5e commit 544901cCopy full SHA for 544901c
.github/workflows/continuous-integration-workflow.yml
@@ -27,10 +27,13 @@ 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##*/}
+ - uses: codecov/codecov-action@v5
33
if: ${{ matrix.node-version == 'current' }}
+ with:
+ files: ./coverage/clover.xml
34
+ token: ${{ secrets.CODECOV_TOKEN }}
35
+ verbose: true
36
+ fail_ci_if_error: true
37
build:
38
name: Build
39
runs-on: ubuntu-latest
0 commit comments