We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ci
1 parent ea4a1b7 commit fdbbdadCopy full SHA for fdbbdad
.github/workflows/ci.yml
@@ -344,7 +344,7 @@ jobs:
344
&& echo "coverage=$(jq '${{ env.PCT }}' ${{ env.COVERAGE_SUMMARY }} -r)" >>$GITHUB_OUTPUT
345
- id: pct
346
name: Print coverage points
347
- run: echo ${{ toJson(steps.test.outputs.coverage) }}
+ run: echo ${{ steps.test.outputs.coverage }}
348
- id: report
349
name: Upload report
350
uses: actions/[email protected]
@@ -375,7 +375,7 @@ jobs:
375
verbose: true
376
working-directory: ${{ github.workspace }}
377
- id: coverage-failure
378
- if: ${{ toJson(steps.test.outputs.coverage) != 400 }}
+ if: steps.test.outputs.coverage != '400'
379
name: Coverage threshold failure (${{ steps.test.outputs.coverage }})
380
run: yarn test:cov:reports
381
build:
0 commit comments