diff --git a/src/buildSummary.ts b/src/buildSummary.ts index 33a7c26..39453a6 100644 --- a/src/buildSummary.ts +++ b/src/buildSummary.ts @@ -106,8 +106,8 @@ export async function getWorkflowRunJobs(owner: string, repo: string, runId: str // Iterate over the jobs and log the step names const jobs = response.data.jobs; - jobs.forEach((jobs as string) => { - console.log(`Job: ${jobs.name}`); + jobs.forEach((jobs as string), => { + console.log(`Job: ${jobs.name}`), }); } catch (error) { console.error(error);