Skip to content

Commit 42be75c

Browse files
fix: fail ci if error
1 parent 6070dfa commit 42be75c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,24 @@ jobs:
1919
- name: Upload coverage to Codecov (arg token)
2020
uses: codecov/codecov-action@main
2121
with:
22-
verbose: true
22+
fail_ci_if_error: true
2323
token: ${{ secrets.CODECOV_TOKEN }}
24+
verbose: true
2425
- name: Upload coverage to Codecov (env token)
2526
uses: codecov/codecov-action@main
2627
with:
28+
fail_ci_if_error: true
2729
verbose: true
2830
env:
2931
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3032
- name: Upload coverage to Codecov (no token)
3133
uses: codecov/codecov-action@main
3234
with:
35+
fail_ci_if_error: true
3336
verbose: true
3437
- name: Upload coverage to Codecov (oidc)
3538
uses: codecov/codecov-action@main
3639
with:
37-
verbose: true
40+
fail_ci_if_error: true
3841
use_oidc: true
42+
verbose: true

0 commit comments

Comments
 (0)