Skip to content

Commit

Permalink
shortSummary const
Browse files Browse the repository at this point in the history
  • Loading branch information
ldaneliukas authored and j-catania committed Jan 12, 2024
1 parent 4bb68ff commit 996dd3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class TestReporter {
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
const failed = results.reduce((sum, tr) => sum + tr.failed, 0)
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
let shortSummary = `${passed} passed, ${failed} failed and ${skipped} skipped `
const shortSummary = `${passed} passed, ${failed} failed and ${skipped} skipped `

core.info(`Updating check run conclusion (${conclusion}) and output`)
const resp = await this.octokit.rest.checks.update({
Expand Down

0 comments on commit 996dd3b

Please sign in to comment.