Skip to content

Commit

Permalink
shortSummary const
Browse files Browse the repository at this point in the history
  • Loading branch information
Linas Daneliukas committed Nov 30, 2021
1 parent d1e7a92 commit 74d8fd6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,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.checks.update({
Expand Down

0 comments on commit 74d8fd6

Please sign in to comment.