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 9744fd6 commit ecdbccdCopy full SHA for ecdbccd
.github/workflows/tests.yml
@@ -91,9 +91,18 @@ jobs:
91
- name: Run tests
92
run: pnpm --filter ${{ matrix.workspace }} --if-present test:unit
93
- name: Collect coverage
94
- uses: codecov/codecov-action@v5
+ uses: coverallsapp/github-action@main
95
if: success()
96
with:
97
- files: ./packages/${{ matrix.workspace }}/coverage/lcov.info
98
- name: ${{ matrix.workspace }}
99
- flags: ${{ matrix.workspace }}
+ flag-name: ${{ matrix.workspace }}
+ file: ./packages/${{ matrix.workspace }}/coverage/lcov.info
+ 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
107
+ with:
108
+ parallel-finished: true
0 commit comments