Skip to content

Commit c4e11d0

Browse files
committed
Remove coverage CI
1 parent d79c6af commit c4e11d0

6 files changed

Lines changed: 0 additions & 256 deletions

File tree

.github/actions/download-and-publish-test-coverage/action.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/actions/merge-and-save-test-coverage/action.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/actions/run-test-coverage-shard/action.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/tests-main.yml

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -70,47 +70,3 @@ jobs:
7070
}
7171
env:
7272
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
73-
74-
test-coverage-shard:
75-
name: 'Test Coverage (shard ${{ matrix.shard }})'
76-
runs-on: ubuntu-latest
77-
timeout-minutes: 30
78-
strategy:
79-
matrix:
80-
shard: ['1/2', '2/2']
81-
steps:
82-
- uses: actions/checkout@v3
83-
name: Checkout [${{ github.ref_name }}]
84-
with:
85-
fetch-depth: 1
86-
- name: Setup deps
87-
uses: ./.github/actions/setup-cli-deps
88-
with:
89-
node-version: ${{ env.DEFAULT_NODE_VERSION }}
90-
- name: Run coverage shard
91-
uses: ./.github/actions/run-test-coverage-shard
92-
with:
93-
shard: ${{ matrix.shard }}
94-
95-
test-coverage-merge:
96-
# Parity note:
97-
# Keep the core test/coverage topology in sync with tests-pr.yml unless a
98-
# difference is intentionally required and documented inline.
99-
# Only publish a new baseline after the full main matrix is green.
100-
needs: [main, test-coverage-shard]
101-
name: 'Test Coverage'
102-
runs-on: ubuntu-latest
103-
timeout-minutes: 15
104-
steps:
105-
- uses: actions/checkout@v3
106-
name: Checkout [${{ github.ref_name }}]
107-
with:
108-
fetch-depth: 1
109-
- name: Setup deps
110-
uses: ./.github/actions/setup-cli-deps
111-
with:
112-
node-version: ${{ env.DEFAULT_NODE_VERSION }}
113-
- name: Merge and save test coverage
114-
uses: ./.github/actions/merge-and-save-test-coverage
115-
with:
116-
branch-name: ${{ github.ref_name }}

.github/workflows/tests-pr.yml

Lines changed: 0 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -215,56 +215,6 @@ jobs:
215215
if: needs.unit-tests.result != 'success'
216216
run: exit 1
217217

218-
test-coverage-shard:
219-
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
220-
name: "Test Coverage (shard ${{ matrix.shard }})"
221-
runs-on: ubuntu-latest
222-
timeout-minutes: 30
223-
strategy:
224-
matrix:
225-
shard: ['1/2', '2/2']
226-
steps:
227-
- uses: actions/checkout@v3
228-
with:
229-
repository: ${{ github.event.pull_request.head.repo.full_name || github.event.repository.full_name }}
230-
ref: ${{ github.event.pull_request.head.ref || github.event.merge_group.head_ref }}
231-
fetch-depth: 1
232-
- name: Setup deps
233-
uses: ./.github/actions/setup-cli-deps
234-
with:
235-
node-version: ${{ env.DEFAULT_NODE_VERSION }}
236-
- name: Run coverage shard
237-
uses: ./.github/actions/run-test-coverage-shard
238-
with:
239-
shard: ${{ matrix.shard }}
240-
241-
test-coverage-merge:
242-
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
243-
needs: test-coverage-shard
244-
name: 'Test Coverage'
245-
runs-on: ubuntu-latest
246-
timeout-minutes: 15
247-
steps:
248-
- uses: actions/checkout@v3
249-
with:
250-
repository: ${{ github.event.pull_request.head.repo.full_name || github.event.repository.full_name }}
251-
ref: ${{ github.event.pull_request.head.ref || github.event.merge_group.head_ref }}
252-
fetch-depth: 1
253-
- name: Setup deps
254-
uses: ./.github/actions/setup-cli-deps
255-
with:
256-
node-version: ${{ env.DEFAULT_NODE_VERSION }}
257-
- name: Merge and save test coverage
258-
uses: ./.github/actions/merge-and-save-test-coverage
259-
with:
260-
branch-name: ${{ github.head_ref || github.event.merge_group.head_ref || github.ref_name }}
261-
# Coverage execution is shared with tests-main; only publication stays PR-only.
262-
- name: Download and publish test coverage
263-
if: ${{ github.event_name == 'pull_request' }}
264-
uses: ./.github/actions/download-and-publish-test-coverage
265-
with:
266-
base-branch-name: '${{ github.base_ref }}'
267-
268218
e2e-tests:
269219
name: 'E2E tests'
270220
if: github.event.pull_request.head.repo.full_name == github.repository

bin/save-coverage-file.js

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)