Skip to content

Commit

Permalink
Refactored mathods for good readability
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed May 22, 2024
1 parent 1c6b9fb commit e99eccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export async function processAndDisplayBuildSummary() {

try {
const runnerTemp = process.env.RUNNER_TEMP;
const filePath: string = join(runnerTemp, `buildSummary_${runId}.json`);
const filePath = join(runnerTemp as string, `buildSummary_${runId as string}.json`);
const data = await readJsonFile(filePath);
const taskSummaryTableRows = getBuildSummaryTable(data);
writeSummary(taskSummaryTableRows);
Expand Down

0 comments on commit e99eccd

Please sign in to comment.