Closed iamfj closed 1 year ago
Hello @iamfj :wave:,
The v3
version is not released yet, actually, I've just started working on it π
I need a few months to finish it, so yeah, currently it is not even "alpha" or "beta" - it just doesn't work at all.
Dependabot has suggested the update from v2
to v3
in my repositories. I am not sure where it got the version from. If it is the GIT tag, maybe it makes sense not to tag the version until you have a stable version.
Thank you, didn't know that dependabot suggests updating actions, even if there is no release tag. I'll rename the branch
Renamed v3
branch to wip-v3
, so dependabot should not suggest updating anymore π
Right, dependabot suggested it for me too. Thanks for the fast response!
Describe a bug
After updating from v2 to v3 I get the following error message when running the jest build step. Since I have no special configuration, I assume that a bug in the action is responsible for this.
Expected behavior
I would expect the test to run through with the below configuration without error.
Details
Action version: v3
OS, where your action is running (windows, linux): ubuntu-latest
Node Version: v18.16.1
workflow.yml file
jobs: jest: runs-on: ubuntu-latest permissions: checks: write pull-requests: write contents: write steps: - name: Checkout uses: actions/checkout@v3 - name: Install node.js uses: actions/setup-node@v3 with: node-version-file: .nvmrc - name: Jest with Coverage uses: ArtiomTr/jest-coverage-report-action@v3Screenshots
![image](https://github.com/ArtiomTr/jest-coverage-report-action/assets/24557998/6baec3a0-089e-4cd1-bf82-4144a275961c)Additional context
If necessary, I can also attach the complete log of this runs.