jest-coverage-report-action: The process '/usr/bin/git' failed with exit code 128
Describe a bug
After the recent releases, I’ve been seeing errors with pulling down code and running the tests. May be related to the updated package in #340 Can’t determine which release it was as they 2.1.3 and 2.2.0 happened so close together over the weekend when I wasn’t running tests.
Expected behavior
The action should be able to pull code and run as expect
Details
-
Action version: v2
-
OS, where your action is running (windows, linux): linux
-
action.yml file
```yml runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Use Node.js 16.15.0 uses: actions/setup-node@v1 with: node-version: 16.15.0 registry-url: 'https://npm.pkg.github.com/' - uses: ArtiomTr/jest-coverage-report-action@v2 with: test-script: npm run test:cov annotations: none env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} ```
-
Screenshots
<!-- If you encounter an incorrect coverage comment display, replace this comment with screenshot --> <!-- If your action unexpectedly fails, please replace this comment with a screenshot of your console -->
</details>
Additional context
About this issue
- Original URL
- State: closed
- Created a year ago
- Reactions: 8
- Comments: 15 (7 by maintainers)
Reverted to the
v2.1.3
version, sov2
should work now.Hi @ArtiomTr 👋 I have the following action file:
on the first coverage report everything goes fine. but the second report always fails. I can post the error logs, if you need it, but they look very similar to the one above. Anyway, I manage to fix this by creating two separate jobs. But just wanted to make you aware of the issue.
@ArtiomTr awesome thank you for the fast fix