Skip to content

Commit

Permalink
fix: Print 'check' summary output
Browse files Browse the repository at this point in the history
  • Loading branch information
kgilpin committed May 18, 2023
1 parent 86beea6 commit 090ce20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function runInGitHub(): Promise<void> {
}

if (process.env.GITHUB_STEP_SUMMARY) {
await writeFile(summary.join('\n'), process.env.GITHUB_STEP_SUMMARY);
await writeFile(process.env.GITHUB_STEP_SUMMARY, summary.join('\n'));
}
process.exit(1);
}
Expand Down

0 comments on commit 090ce20

Please sign in to comment.