Skip to content

Commit f2b6733

Browse files
authored
chore: do not fail on coveralls error (#1557)
1 parent cd8173e commit f2b6733

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,12 @@ jobs:
9090
- name: Upload coverage results to Coveralls
9191
uses: coverallsapp/github-action@v2
9292
with:
93+
fail-on-error: false
9394
github-token: ${{ secrets.GITHUB_TOKEN }}
9495
path-to-lcov: ./test/coverage/lcov.info
9596
parallel: true
9697
flag-name: node-${{ matrix.node }}-${{ matrix.os }}
98+
continue-on-error: true
9799

98100
coveralls-finish:
99101
name: Coveralls Finished
@@ -103,8 +105,10 @@ jobs:
103105
- name: Coveralls Finished
104106
uses: coverallsapp/github-action@v2
105107
with:
108+
fail-on-error: false
106109
github-token: ${{ secrets.GITHUB_TOKEN }}
107110
parallel-finished: true
111+
continue-on-error: true
108112

109113
deno-tests:
110114
name: Deno Tests / ${{ matrix.deno }}

0 commit comments

Comments
 (0)