Add createCheck to display test results in GitHub UI

pull/97/head
David Finol 2021-02-22 12:44:37 -06:00
parent e2b73bb90c
commit b4a7370c47
2 changed files with 2 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -18,6 +18,7 @@ class ResultsCheck {
core.info(`Processing file ${filepath}...`);
const fileData = await ResultsCheck.parseReport(path.join(artifactsPath, filepath));
core.info(fileData.summary);
core.info(fileData.suites.length);
runs.push(fileData);
}),
);