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 f0fc4b3 commit b2ea24dCopy full SHA for b2ea24d
.github/workflows/test.yml
@@ -101,10 +101,16 @@ jobs:
101
env:
102
CODECOV_NAME: ${{ github.workflow }}
103
104
- - name: Upload js coverage
105
- run: npm run report && npm run codecov
106
- env:
107
- CODECOV_NAME: ${{ github.workflow }}
+ - name: Generate js coverage report
+ run: npm run report
+
+ - uses: codecov/codecov-action@v5
108
+ name: Upload js coverage
109
+ with:
110
+ files: coverage/lcov.info
111
+ flags: javascript
112
+ name: ${{ github.workflow }}
113
+ verbose: true
114
115
lint:
116
runs-on: ubuntu-latest
0 commit comments