8
8
type : string
9
9
10
10
jobs :
11
- run_unit_coverage_upload :
12
- name : " Upload unit coverage"
13
- runs-on : ubuntu-latest
14
-
15
- # ci can be skipped with `[skip ci]` prefix in message
16
- if : " !contains(github.event.head_commit.message, 'skip ci')"
17
-
18
- steps :
19
- - name : " Checkout codebase"
20
- uses : actions/checkout@v3
21
-
22
- - name : " Download Unit coverage from Artifact"
23
- uses : ./.github/actions/download-artifact
24
- with :
25
- name : unit-tests-coverage
26
-
27
- - name : Upload coverage to Codecov
28
- uses : codecov/codecov-action@v3.1.4
29
- if : ${{ !github.event.pull_request.head.repo.fork }}
30
- with :
31
- fail_ci_if_error : true
32
- token : ${{ secrets.codecov_token }}
11
+ # KA NOTE: disable this since this depends on Cypress run which needs secret
12
+ # run_unit_coverage_upload:
13
+ # name: "Upload unit coverage"
14
+ # runs-on: ubuntu-latest
15
+
16
+ # # ci can be skipped with `[skip ci]` prefix in message
17
+ # if: "!contains(github.event.head_commit.message, 'skip ci')"
18
+
19
+ # steps:
20
+ # - name: "Checkout codebase"
21
+ # uses: actions/checkout@v3
22
+
23
+ # - name: "Download Unit coverage from Artifact"
24
+ # uses: ./.github/actions/download-artifact
25
+ # with:
26
+ # name: unit-tests-coverage
27
+
28
+ # - name: Upload coverage to Codecov
29
+ # uses: codecov/codecov-action@v3.1.4
30
+ # if: ${{ !github.event.pull_request.head.repo.fork }}
31
+ # with:
32
+ # fail_ci_if_error: true
33
+ # token: ${{ secrets.codecov_token }}
33
34
34
35
run_e2e_coverage_upload :
35
36
name : Upload E2E coverage
@@ -53,24 +54,25 @@ jobs:
53
54
fail_ci_if_error : true
54
55
token : ${{ secrets.codecov_token }}
55
56
56
- run_cypress_coverage_upload :
57
- name : Upload Cypress coverage
58
- runs-on : ubuntu-latest
57
+ # KA NOTE: disable this since this depends on Cypress run which needs secret
58
+ # run_cypress_coverage_upload:
59
+ # name: Upload Cypress coverage
60
+ # runs-on: ubuntu-latest
59
61
60
- if : " !contains(github.event.head_commit.message, 'skip ci')"
62
+ # if: "!contains(github.event.head_commit.message, 'skip ci')"
61
63
62
- steps :
63
- - name : " Checkout codebase"
64
- uses : actions/checkout@v3
64
+ # steps:
65
+ # - name: "Checkout codebase"
66
+ # uses: actions/checkout@v3
65
67
66
- - name : " Download Cypress coverage from Artifact"
67
- uses : ./.github/actions/download-artifact
68
- with :
69
- name : cypress-tests-coverage
68
+ # - name: "Download Cypress coverage from Artifact"
69
+ # uses: ./.github/actions/download-artifact
70
+ # with:
71
+ # name: cypress-tests-coverage
70
72
71
- - name : Upload coverage to Codecov
72
- uses : codecov/codecov-action@v3.1.4
73
- if : ${{ !github.event.pull_request.head.repo.fork }}
74
- with :
75
- fail_ci_if_error : true
76
- token : ${{ secrets.codecov_token }}
73
+ # - name: Upload coverage to Codecov
74
+ # uses: codecov/codecov-action@v3.1.4
75
+ # if: ${{ !github.event.pull_request.head.repo.fork }}
76
+ # with:
77
+ # fail_ci_if_error: true
78
+ # token: ${{ secrets.codecov_token }}
0 commit comments