Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/__call-ci-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,30 +86,32 @@ jobs:
- name: Publish (dry run)
run: npm publish --dry-run

- name: Upload test results to Codecov
- name: Upload test coverage
# any except canceled or skipped
if: >-
always() &&
(steps.test.outcome == 'success' || steps.test.outcome == 'failure') &&
startsWith(github.repository, 'LizardByte/')
uses: codecov/test-results-action@47f89e9acb64b76debcd5ea40642d25a4adced9f # v1.1.1
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
disable_search: true
fail_ci_if_error: true
files: ./junit.xml,!./cache
files: ./coverage/coverage-final.json
report_type: coverage
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

- name: Upload test coverage to Codecov
- name: Upload test results
# any except canceled or skipped
if: >-
always() &&
(steps.test.outcome == 'success' || steps.test.outcome == 'failure') &&
startsWith(github.repository, 'LizardByte/')
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
disable_search: true
fail_ci_if_error: true
files: ./coverage/coverage-final.json
files: ./junit.xml,!./cache
report_type: test_results
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

Expand Down