Before submitting a topic, please confirm the following
I have searched for similar issues before creating this topic.
I have verified that my repository is using the Codecov GitHub app, if using GitHub
I have validated my codecov.yaml
configuration file.
I have filled out the below sections to the best of my ability.
Description
After follow the steps to setup the codecov and then try to use in my .yml at Github Actions i’ve got this error:
Codecov report uploader 0.1.15
[2022-11-04T15:36:49.184Z] ['info'] => Project root located at: D:/a/account-landing-v2/account-landing-v2
[2022-11-04T15:36:49.184Z] ['info'] -> Token found by environment variables
[2022-11-04T15:36:49.222Z] ['info'] Searching for coverage files...
[2022-11-04T15:36:49.254Z] ['error'] There was an error running the uploader: Error while cleaning paths. No paths matched existing files!
Error: Codecov: Failed to properly upload: The process 'D:\a\_actions\codecov\codecov-action\v3\dist\codecov.exe' failed with exit code 4294967295
CI/CD URL
Please provide a link to the CI/CD run.
https://github.com/themarkerr/account-landing-v2/actions/runs/3395019814/jobs/5644344452
Codecov Output
Please provide the full output of running the uploader on your CI/CD. This will typically have the Codecov logo as ASCII.
Run codecov/codecov-action@v3
==> windows OS detected
https://uploader.codecov.io/v0.1.15/windows/codecov.exe.SHA256SUM
==> SHASUM file signed by key id 806bb28aed779869
==> Uploader SHASUM verified (43fa86a6c5ce325daf8eb0c523db858f036afa492ac45a7dd59c41989cc1eb12 codecov.exe)
==> Running version v0.1.15
==> Running version v0.3.2
D:\a\_actions\codecov\codecov-action\v3\dist\codecov.exe -n "" -Q github-action-3.1.1 -Z -f coverage.xml
[2022-11-04T15:36:49.154Z] ['info']
_____ _
/ ____| | |
| | ___ __| | ___ ___ _____ __
| | / _ \ / _` |/ _ \/ __/ _ \ \ / /
| |___| (_) | (_| | __/ (_| (_) \ V /
\_____\___/ \__,_|\___|\___\___/ \_/
Codecov report uploader 0.1.15
[2022-11-04T15:36:49.184Z] ['info'] => Project root located at: D:/a/account-landing-v2/account-landing-v2
[2022-11-04T15:36:49.184Z] ['info'] -> Token found by environment variables
[2022-11-04T15:36:49.222Z] ['info'] Searching for coverage files...
[2022-11-04T15:36:49.254Z] ['error'] There was an error running the uploader: Error while cleaning paths. No paths matched existing files!
Error: Codecov: Failed to properly upload: The process 'D:\a\_actions\codecov\codecov-action\v3\dist\codecov.exe' failed with exit code 4294967295
Expected Results
Please provide what you expect to have happened (e.g. a file that has missing coverage on a particular line).
Actual Results
Run codecov/codecov-action@v3
==> windows OS detected
https://uploader.codecov.io/v0.1.15/windows/codecov.exe.SHA256SUM
==> SHASUM file signed by key id 806bb28aed779869
==> Uploader SHASUM verified (43fa86a6c5ce325daf8eb0c523db858f036afa492ac45a7dd59c41989cc1eb12 codecov.exe)
==> Running version v0.1.15
==> Running version v0.3.2
D:\a\_actions\codecov\codecov-action\v3\dist\codecov.exe -n "" -Q github-action-3.1.1 -Z -f coverage.xml
[2022-11-04T15:36:49.154Z] ['info']
_____ _
/ ____| | |
| | ___ __| | ___ ___ _____ __
| | / _ \ / _` |/ _ \/ __/ _ \ \ / /
| |___| (_) | (_| | __/ (_| (_) \ V /
\_____\___/ \__,_|\___|\___\___/ \_/
Codecov report uploader 0.1.15
[2022-11-04T15:36:49.184Z] ['info'] => Project root located at: D:/a/account-landing-v2/account-landing-v2
[2022-11-04T15:36:49.184Z] ['info'] -> Token found by environment variables
[2022-11-04T15:36:49.222Z] ['info'] Searching for coverage files...
[2022-11-04T15:36:49.254Z] ['error'] There was an error running the uploader: Error while cleaning paths. No paths matched existing files!
Error: Codecov: Failed to properly upload: The process 'D:\a\_actions\codecov\codecov-action\v3\dist\codecov.exe' failed with exit code 4294967295
Additional Information
Any additional information, configuration, or data that might be necessary to reproduce the issue.
.yml file
# .github/workflows/test.yml
# Workflow name
name: 'QA tests'
# Event for the workflow
on:
push:
branches:
- APP-827-add-codecov-support
jobs:
ui-uat-test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: UI Tests - UAT
uses: cypress-io/github-action@v4
with:
group: e2e Tests - UAT
browser: chrome
parallel: true
command: npm run cypress-run-ui--uat-tests-parallel
working-directory: test
project: test
config-file: test/cypress.config.js
env:
NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }}
ui-stage-test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: UI Tests - Stage
uses: cypress-io/github-action@v4
with:
group: e2e Tests - STG
browser: chrome
parallel: true
command: npm run cypress-run-ui-stage-tests-parallel
working-directory: test
project: test
config-file: test/cypress.config.js
env:
NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
version: 'v0.1.15'
files: coverage.xml
fail_ci_if_error: true