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 7932b43 commit 25b2070Copy full SHA for 25b2070
.github/workflows/CI.yml
@@ -159,6 +159,22 @@ jobs:
159
- name: Run tests
160
run: pnpm test:coverage
161
162
+ - name: Download previous coverage artifact
163
+ uses: actions/download-artifact@v4
164
+ continue-on-error: true
165
+ with:
166
+ name: test-coverage
167
+ path: previous-coverage
168
+ github-token: ${{ secrets.GITHUB_TOKEN }}
169
+ repository: ${{ github.repository }}
170
+
171
+ - name: Coverage Report as Comment (Clover)
172
+ uses: lucassabreu/comment-coverage-clover@main
173
174
+ file: ./coverage/clover.xml
175
+ base-file: ./previous-coverage/clover.xml
176
177
178
- name: Upload test coverage
179
if: success()
180
uses: actions/upload-artifact@v4
0 commit comments