Notify TAB API to share a summary report on PRs (#6544)

* Notify TAB API to share a summary report on PRs

* wip: break a test

* Revert "wip: break a test"

This reverts commit 80c3793cbd.
This commit is contained in:
Jace Browning
2025-04-28 19:30:42 -04:00
committed by GitHub
parent f6cb725268
commit 8867258e47

View File

@ -12,10 +12,46 @@ class MyAPIReporter implements Reporter {
async onEnd(result: FullResult): Promise<void> {
await Promise.all(this.pendingRequests)
if (this.allResults.length > 0 && this.blockingResults.length === 0) {
if (this.allResults.length === 0) {
if (!process.env.CI) {
console.error('TAB API - No results to process')
}
return
}
if (this.blockingResults.length === 0) {
result.status = 'passed'
if (!process.env.CI) {
console.error('TAB API - Marked failures as non-blocking')
console.log('TAB API - Marked failures as non-blocking')
}
}
try {
const response = await fetch(`${process.env.TAB_API_URL}/api/share`, {
method: 'POST',
headers: new Headers({
'Content-Type': 'application/json',
'X-API-Key': process.env.TAB_API_KEY || '',
}),
body: JSON.stringify({
project: 'https://github.com/KittyCAD/modeling-app',
branch:
process.env.GITHUB_HEAD_REF || process.env.GITHUB_REF_NAME || '',
commit: process.env.CI_COMMIT_SHA || process.env.GITHUB_SHA || '',
}),
})
if (!response.ok) {
const error = await response.json()
if (!process.env.CI) {
console.error('TAB API - Failed to share results:', error)
}
}
} catch (error) {
const message = error instanceof Error ? error.message : String(error)
if (!process.env.CI) {
console.error('TAB API - Unable to share results:', message)
}
}
}