import { runCheckCodeWorkflow } from "./lib/checkCode"; void runCheckCodeWorkflow().then((report) => { console.log(JSON.stringify({ status: report.status, runId: report.runId, reportPath: report.reportPath, })); if (report.status !== "succeeded") process.exitCode = 1; }).catch((error) => { console.error(error instanceof Error ? error.message : String(error)); process.exitCode = 1; });