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 866cfe7 commit 0568f26Copy full SHA for 0568f26
.github/workflows/ci.yml
@@ -259,7 +259,7 @@ jobs:
259
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
260
if: steps.list_env.outputs.nyc != ''
261
with:
262
- name: coverage
+ name: coverage-${{ strategy.job-index }} # to avoid conflicts
263
path: ./coverage
264
retention-days: 1
265
@@ -282,8 +282,9 @@ jobs:
282
- name: Collect coverage reports
283
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
284
285
+ pattern: coverage-* # download all coverage artifacts
286
287
+ merge-multiple: true
288
289
- name: Merge coverage reports
290
shell: bash
0 commit comments