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 c33b9e7 commit f8ac5b3Copy full SHA for f8ac5b3
.github/workflows/unit-tests.yml
@@ -94,7 +94,13 @@ jobs:
94
- name: 🧪 Run Internal Unit Tests
95
run: pnpm run test:internal --reporter=default --reporter=blob --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
96
97
- - name: Upload blob report to GitHub Actions Artifacts
+ - name: Gather all reports
98
+ run: |
99
+ mkdir -p .vitest-reports
100
+ find . -type f -path '*/.vitest-reports/blob-*.json' \
101
+ -exec bash -c 'src="$1"; basename=$(basename "$src"); pkg=$(dirname "$src" | sed "s|^\./||;s|/\.vitest-reports$||;s|/|_|g"); cp "$src" ".vitest-reports/${pkg}-${basename}"' _ {} \;
102
+
103
+ - name: Upload blob reports to GitHub Actions Artifacts
104
if: ${{ !cancelled() }}
105
uses: actions/upload-artifact@v4
106
with:
0 commit comments