Skip to content

Commit

Permalink
fix CI reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
Logicer16 committed Nov 23, 2024
1 parent bb8a5a6 commit becb7d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
continue-on-error: true

- name: Annotate ESLint Results
if: ${{ inputs.report }}
if: ${{ inputs.report != false }}
uses: ataylorme/eslint-annotate-action@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
Expand Down Expand Up @@ -105,14 +105,14 @@ jobs:
run: pnpm run test:ci --coverage --reporter junit --outputFile ./coverage/junit.xml

- name: Upload coverage to Codecov
if: ${{ inputs.report }}
if: ${{ inputs.report != false }}
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

- name: Upload test results to Codecov
if: ${{ !cancelled() && inputs.report }}
if: ${{ !cancelled() && inputs.report != false }}
uses: codecov/test-results-action@v1
with:
fail_ci_if_error: true
Expand Down

0 comments on commit becb7d4

Please sign in to comment.