yarn build

pull/286/head
Gabriel Le Breton 2024-11-07 22:29:20 -05:00
parent 56059672d4
commit 7386cbef09
No known key found for this signature in database
GPG Key ID: F1C2F88E084E4EF1
2 changed files with 9 additions and 4 deletions

11
dist/index.js generated vendored
View File

@ -1014,9 +1014,14 @@ const ResultsCheck = {
if (!filepath.endsWith('.xml'))
return;
core.info(`Processing file ${filepath}...`);
const fileData = yield results_parser_1.default.parseResults(path_1.default.join(artifactsPath, filepath));
core.info(fileData.summary);
runs.push(fileData);
try {
const fileData = yield results_parser_1.default.parseResults(path_1.default.join(artifactsPath, filepath));
core.info(fileData.summary);
runs.push(fileData);
}
catch (error) {
core.warning(`Failed to parse ${filepath}: ${error.message}`);
}
})));
// Combine all results into a single run summary
const runSummary = new results_meta_1.RunMeta(checkName);

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long