Skip to content

Commit f762def

Browse files
authored
ci: do not fail on coveralls error (#1121)
## What kind of change does this PR introduce? Add a `fail-on-error: false` to `coveralls` uploads. Change `coverageapp` version used from `master` to `v2`, so that it accepts this input. ## What is the current behavior? Coveralls seems to be failing, and being flaky. ## What is the new behavior? If `coveralls` upload fails, the CI will not fail.
1 parent e04efee commit f762def

File tree

1 file changed

+2
-1
lines changed
  • packages/core/auth-js/.github/workflows

1 file changed

+2
-1
lines changed

packages/core/auth-js/.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ jobs:
3838
npm t
3939
4040
- name: Upload coverage results to Coveralls
41-
uses: coverallsapp/github-action@master
41+
uses: coverallsapp/github-action@v2
4242
with:
43+
fail-on-error: false
4344
github-token: ${{ secrets.GITHUB_TOKEN }}
4445
path-to-lcov: ./test/coverage/lcov.info
4546
base-path: ./src

0 commit comments

Comments
 (0)