Skip to content

Commit ecdbccd

Browse files
committed
ci: use coveralls
1 parent 9744fd6 commit ecdbccd

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/tests.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,18 @@ jobs:
9191
- name: Run tests
9292
run: pnpm --filter ${{ matrix.workspace }} --if-present test:unit
9393
- name: Collect coverage
94-
uses: codecov/codecov-action@v5
94+
uses: coverallsapp/github-action@main
9595
if: success()
9696
with:
97-
files: ./packages/${{ matrix.workspace }}/coverage/lcov.info
98-
name: ${{ matrix.workspace }}
99-
flags: ${{ matrix.workspace }}
97+
flag-name: ${{ matrix.workspace }}
98+
file: ./packages/${{ matrix.workspace }}/coverage/lcov.info
99+
parallel: true
100+
fail-on-error: false
101+
finish:
102+
runs-on: ubuntu-latest
103+
needs: unit
104+
steps:
105+
- name: Upload collected coverage
106+
uses: coverallsapp/github-action@main
107+
with:
108+
parallel-finished: true

0 commit comments

Comments
 (0)