We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c541b3f commit e90f12eCopy full SHA for e90f12e
.github/codecov.yml
@@ -1,3 +1,9 @@
1
+codecov:
2
+ allow_coverage_offsets: True
3
+coverage:
4
+ status:
5
+ project: off
6
+ patch: off
7
comment:
8
layout: "diff, files"
9
behavior: default
.github/workflows/test_coverage.yml
@@ -6,14 +6,21 @@ on:
jobs:
test-coverage:
runs-on: ubuntu-latest
+ env:
10
+ # This must be set for fetchdep.sh to get the right branch
11
+ PR_NUMBER: ${{github.event.number}}
12
steps:
13
- name: Checkout code
14
uses: actions/checkout@v2
15
16
+ - name: Yarn cache
17
+ uses: c-hive/gha-yarn-cache@v2
18
+
19
- name: Run tests with coverage
20
run: "yarn install && yarn build && yarn coverage"
21
22
- name: Upload coverage
23
uses: codecov/codecov-action@v2
24
with:
25
+ fail_ci_if_error: false
26
verbose: true
0 commit comments