We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b2414e + 7793920 commit d93f5f9Copy full SHA for d93f5f9
.github/workflows/validate-branch.yaml
@@ -103,9 +103,11 @@ jobs:
103
if: steps.cache-dependencies.outputs.cache-hit != 'true'
104
run: npm ci
105
106
- - uses: paambaati/[email protected]
107
- env:
108
- CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
+ - name: Run tests
+ run: npm run test
+
109
+ - uses: qltysh/qlty-action/coverage@v1
110
with:
- coverageCommand: npm run test
111
- coverageLocations: ./coverage/lcov.info:lcov
+ token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
112
+ files: ${{ github.workspace }}/coverage/lcov.info
113
+ skip-errors: false
0 commit comments