yarn build
parent
56059672d4
commit
7386cbef09
|
@ -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);
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue