Skip to content

Commit

Permalink
tolerate coverage failures in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dkoes committed Oct 19, 2023
1 parent c4d0a61 commit c325471
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ jobs:

- name: Coverage
env:
NODE_OPTIONS: "--max_old_space_size=8192"
NODE_OPTIONS: "--max_old_space_size=8192"
# coverage has trouble fetching data for some reason in the CI,
# I don't actually care about the test results (that's tested above)
# so ignore any failure here
run: npm run cover
continue-on-error: true

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit c325471

Please sign in to comment.