Add createCheck to display test results in GitHub UI

pull/97/head
David Finol 2021-02-22 23:54:07 -06:00
parent 6a619e780c
commit 4a83d63c34
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

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