Skip to content

Commit a9b52e0

Browse files
Disable coverage in GH actions
1 parent dc495ce commit a9b52e0

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

.github/workflows/build-and-test.yaml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,12 @@ jobs:
2626
- name: Test
2727
run: yarn lint && yarn test
2828

29+
# Coverage reporting disabled (coverage command removed due to glob@10 incompatibility).
2930
report-coverage:
31+
if: ${{ false }}
3032
runs-on: ubuntu-latest
3133
steps:
32-
- name: Checkout
33-
uses: actions/checkout@v4
34-
- name: Setup node
35-
uses: actions/setup-node@v4
36-
with:
37-
node-version: 18.x
38-
cache: yarn
39-
- name: Yarn
40-
run: yarn
41-
- name: Test
42-
run: yarn coverage
43-
- name: Coveralls
44-
uses: coverallsapp/github-action@master
45-
with:
46-
github-token: ${{ secrets.GITHUB_TOKEN }}
47-
env:
48-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
- run: echo "Coverage reporting disabled"
4935

5036
test-as-dependency:
5137
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)