yarn build
parent
56059672d4
commit
7386cbef09
|
@ -1014,9 +1014,14 @@ const ResultsCheck = {
|
||||||
if (!filepath.endsWith('.xml'))
|
if (!filepath.endsWith('.xml'))
|
||||||
return;
|
return;
|
||||||
core.info(`Processing file ${filepath}...`);
|
core.info(`Processing file ${filepath}...`);
|
||||||
const fileData = yield results_parser_1.default.parseResults(path_1.default.join(artifactsPath, filepath));
|
try {
|
||||||
core.info(fileData.summary);
|
const fileData = yield results_parser_1.default.parseResults(path_1.default.join(artifactsPath, filepath));
|
||||||
runs.push(fileData);
|
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
|
// Combine all results into a single run summary
|
||||||
const runSummary = new results_meta_1.RunMeta(checkName);
|
const runSummary = new results_meta_1.RunMeta(checkName);
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue