Thanks to visit codestin.com
Credit goes to github.com

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
12 changes: 7 additions & 5 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
shell: bash
run: npm test

- name: Upload test results to Codecov
- name: Upload coverage
# any except canceled or skipped
if: >-
always() &&
Expand All @@ -118,15 +118,16 @@ jobs:
steps.jest.outcome == 'failure'
) &&
startsWith(github.repository, 'LizardByte/')
uses: codecov/test-results-action@47f89e9acb64b76debcd5ea40642d25a4adced9f # v1.1.1
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
fail_ci_if_error: true
files: ./junit-python.xml,./junit.xml
files: ./coverage/python-coverage.xml,./coverage/coverage-final.json
flags: ${{ runner.os }}
report_type: coverage
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

- name: Upload coverage to Codecov
- name: Upload test results
# any except canceled or skipped
if: >-
always() &&
Expand All @@ -140,7 +141,8 @@ jobs:
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
fail_ci_if_error: true
files: ./coverage/python-coverage.xml,./coverage/coverage-final.json
files: ./junit-python.xml,./junit.xml
flags: ${{ runner.os }}
report_type: test_results
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true