We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7950142 commit 7ae3ea0Copy full SHA for 7ae3ea0
.github/workflows/continuous-integration-workflow.yml
@@ -27,10 +27,14 @@ 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##*/}
+ - name: Upload coverage to Codecov
+ uses: codecov/codecov-action@v3
33
if: ${{ matrix.node-version == 'current' }}
+ with:
34
+ file: ./coverage/clover.xml
35
+ token: ${{ secrets.CODECOV_TOKEN }}
36
+ commit: ${{ github.sha }}
37
+ branch: ${{ github.ref }}
38
build:
39
name: Build
40
runs-on: ubuntu-latest
0 commit comments