Refactor areAllRunsProducedByCodeQL to use Array.every

This commit is contained in:
Koen Vlaswinkel 2024-03-26 11:09:44 +01:00
parent f835435c19
commit 016720d81f
3 changed files with 7 additions and 17 deletions

10
lib/upload-lib.js generated
View file

@ -74,14 +74,10 @@ function combineSarifFiles(sarifFiles) {
* @param sarifFiles The list of SARIF files to check.
*/
function areAllRunsProducedByCodeQL(sarifFiles) {
for (const sarifFile of sarifFiles) {
return sarifFiles.every((sarifFile) => {
const sarifObject = JSON.parse(fs.readFileSync(sarifFile, "utf8"));
const allRunsCodeQL = sarifObject.runs?.every((run) => run.tool?.driver?.name === "CodeQL");
if (!allRunsCodeQL) {
return false;
}
}
return true;
return sarifObject.runs?.every((run) => run.tool?.driver?.name === "CodeQL");
});
}
// Takes a list of paths to sarif files and combines them together using the
// CLI `github merge-results` command when all SARIF files are produced by

File diff suppressed because one or more lines are too long

View file

@ -66,21 +66,15 @@ function combineSarifFiles(sarifFiles: string[]): SarifFile {
* @param sarifFiles The list of SARIF files to check.
*/
function areAllRunsProducedByCodeQL(sarifFiles: string[]): boolean {
for (const sarifFile of sarifFiles) {
return sarifFiles.every((sarifFile) => {
const sarifObject = JSON.parse(
fs.readFileSync(sarifFile, "utf8"),
) as SarifFile;
const allRunsCodeQL = sarifObject.runs?.every(
return sarifObject.runs?.every(
(run) => run.tool?.driver?.name === "CodeQL",
);
if (!allRunsCodeQL) {
return false;
}
}
return true;
});
}
// Takes a list of paths to sarif files and combines them together using the