mirror of
https://github.com/github/codeql-action
synced 2026-06-01 20:01:46 +03:00
Fix style inconsistency
This commit is contained in:
Generated
+2
-2
@@ -96417,7 +96417,7 @@ async function run() {
|
||||
);
|
||||
return;
|
||||
}
|
||||
if (runStats && uploadResults && uploadResults["code-scanning" /* CodeScanning */]) {
|
||||
if (runStats !== void 0 && uploadResults !== void 0 && uploadResults["code-scanning" /* CodeScanning */] !== void 0) {
|
||||
await sendStatusReport2(
|
||||
startedAt,
|
||||
config,
|
||||
@@ -96433,7 +96433,7 @@ async function run() {
|
||||
dependencyCacheResults,
|
||||
logger
|
||||
);
|
||||
} else if (runStats) {
|
||||
} else if (runStats !== void 0) {
|
||||
await sendStatusReport2(
|
||||
startedAt,
|
||||
config,
|
||||
|
||||
@@ -445,9 +445,9 @@ async function run() {
|
||||
}
|
||||
|
||||
if (
|
||||
runStats &&
|
||||
uploadResults &&
|
||||
uploadResults[analyses.AnalysisKind.CodeScanning]
|
||||
runStats !== undefined &&
|
||||
uploadResults !== undefined &&
|
||||
uploadResults[analyses.AnalysisKind.CodeScanning] !== undefined
|
||||
) {
|
||||
await sendStatusReport(
|
||||
startedAt,
|
||||
@@ -464,7 +464,7 @@ async function run() {
|
||||
dependencyCacheResults,
|
||||
logger,
|
||||
);
|
||||
} else if (runStats) {
|
||||
} else if (runStats !== undefined) {
|
||||
await sendStatusReport(
|
||||
startedAt,
|
||||
config,
|
||||
|
||||
Reference in New Issue
Block a user