mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 04:00:24 +08:00
Fix style inconsistency
This commit is contained in:
@@ -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