mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 22:07:09 +01:00
shortSummary const
This commit is contained in:
parent
4bb68fffaa
commit
996dd3b9b1
1 changed files with 1 additions and 1 deletions
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue