Skip to content

Commit 2c1ede0

Browse files
committed
chore: remove unused coverage report push
1 parent 991b11e commit 2c1ede0

2 files changed

Lines changed: 0 additions & 12 deletions

File tree

.github/workflows/scripts/collect-coverage.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ function generateMarkdownReport(coverageData, commitSha) {
6565
let markdown = `## Coverage Report\n\n`;
6666
markdown += `**Commit:** ${commitSha}\n\n`;
6767

68-
// Add artifact link if running in GitHub Actions
69-
if (process.env.GITHUB_RUN_ID && process.env.GITHUB_REPOSITORY) {
70-
const artifactUrl = `https://github.com/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID}`;
71-
markdown += `📊 [View detailed HTML coverage reports](${artifactUrl})\n\n`;
72-
}
73-
7468
let overallLines = { total: 0, covered: 0 };
7569
let overallBranches = { total: 0, covered: 0 };
7670
let overallFunctions = { total: 0, covered: 0 };

.github/workflows/test.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,6 @@ jobs:
102102
- name: Generate coverage report
103103
id: coverage
104104
run: node .github/workflows/scripts/collect-coverage.js
105-
- name: Upload coverage HTML reports
106-
uses: actions/upload-artifact@v4
107-
with:
108-
name: coverage-reports
109-
path: |
110-
packages/*/coverage
111105
- name: Comment PR with coverage report
112106
uses: marocchino/sticky-pull-request-comment@v2
113107
if: github.event_name == 'pull_request'

0 commit comments

Comments
 (0)