File tree Expand file tree Collapse file tree 1 file changed +20
-22
lines changed
Expand file tree Collapse file tree 1 file changed +20
-22
lines changed Original file line number Diff line number Diff line change @@ -29,25 +29,23 @@ jobs:
2929 with :
3030 hide-comment : false
3131 coverage-summary-path : ./coverage/coverage-summary.json
32- test-code-climate :
33- name : Upload unit test results to Code Climate
34- runs-on : ubuntu-latest
35-
36- steps :
37- - uses : actions/checkout@v3
38-
39- - name : Setup
40- uses : ./.github/actions/setup
41-
42- - name : Run tests
43- run : |
44- yarn test --coverage --coverageReporters lcov
45-
46- - name : Upload coverage to Code Climate
47- uses : paambaati/codeclimate-action@v9.0.0
48- env :
49- CC_TEST_REPORTER_ID : ${{ secrets.CC_TEST_REPORTER_ID }}
50- with :
51- coverageCommand : yarn test --coverage --coverageReporters lcov
52- coverageLocations : |
53- ${{github.workspace}}/coverage/lcov.info:lcov
32+
33+ run-tests-and-publish-coverage :
34+ name : Upload unit test results to qlty
35+ runs-on : ubuntu-latest
36+
37+ steps :
38+ - uses : actions/checkout@v3
39+
40+ - name : Setup
41+ uses : ./.github/actions/setup
42+
43+ - name : Run tests
44+ run : |
45+ yarn test --coverage --coverageReporters lcov
46+
47+ - name : Upload coverage to qlty
48+ uses : qltysh/qlty-action/coverage@v1
49+ with :
50+ token : ${{ secrets.QLTY_COVERAGE_TOKEN }}
51+ files : coverage/lcov.info
You can’t perform that action at this time.
0 commit comments