pull/97/head
David Finol 2021-02-26 00:30:11 -06:00
parent 4f5a1aaa31
commit af3a68d3d6
4 changed files with 2 additions and 24 deletions

View File

@ -1,19 +0,0 @@
{{#runs}}
<details><summary>{{summary}}</summary>
{{#suites}}
#### {{summary}}
{{#tests}}
* {{summary}}{{#if annotation}}
{{indent annotation.message}}
{{indent annotation.raw_details}}
{{else}}
{{/if}}{{/tests}}{{/suites}}
</details>
{{/runs}}

File diff suppressed because one or more lines are too long

View File

@ -1,3 +0,0 @@
{{#runs}}
### {{summary}}
{{/runs}}

View File

@ -42,7 +42,7 @@ async function action() {
if (createCheck) {
const failedTestCount = await ResultsCheck.createCheck(artifactsPath, checkName, githubToken);
if (failedTestCount >= 1) {
core.setFailed(`Tests Failed! Check '${checkName}' for details.`);
core.setFailed(`Test(s) Failed! Check '${checkName}' for details.`);
}
}
}