You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
coverageReport = '## 📊 Coverage Report\n❌ Could not read coverage report: ' + error.message;
164
214
}
165
215
166
-
// Add artifact download instructions
167
-
const artifactMessage = `
216
+
// Add GitHub Pages link
217
+
const reportUrl = process.env.REPORT_URL;
218
+
const pagesMessage = `
219
+
## 🌐 Interactive Coverage Report
220
+
221
+
**[📊 View Full HTML Coverage Report](${reportUrl})**
168
222
169
-
## 📎 How to Access Coverage Reports:
223
+
## 📎 Additional Reports:
170
224
171
225
1. **Download Artifacts:** Go to the [workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) and download \`coverage-report\`
172
-
2. **View HTML Report:** Extract the artifact and open \`html/index.html\` in your browser for interactive coverage analysis
173
-
3. **Machine Processing:** Use \`coverage.xml\` (Cobertura format) or \`coverage.info\` (LCOV format) for tooling integration
226
+
2. **Machine Processing:** Use \`coverage.xml\` (Cobertura format) or \`coverage.info\` (LCOV format) for tooling integration
174
227
175
228
---
176
229
*Coverage report updated on: ${new Date().toISOString()}*
0 commit comments