Skip to content

Commit 023add5

Browse files
committed
Fix linter violations
1 parent 4e46a49 commit 023add5

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

lib/analyze-action.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/analyze-action.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ async function run() {
8787
const gitHubVersion = await util.getGitHubVersion(apiDetails);
8888
const uploadStats = await upload_lib.uploadFromActions(
8989
outputDir,
90-
parseRepositoryNwo(actionsUtil.getRequiredEnvParam("GITHUB_REPOSITORY")),
90+
parseRepositoryNwo(
91+
actionsUtil.getRequiredEnvParam("GITHUB_REPOSITORY")
92+
),
9193
await actionsUtil.getCommitOid(),
9294
await actionsUtil.getRef(),
9395
await actionsUtil.getAnalysisKey(),
@@ -102,7 +104,7 @@ async function run() {
102104
stats = { ...queriesStats, ...uploadStats };
103105
} else {
104106
logger.info("Not uploading results");
105-
stats = { ...queriesStats }
107+
stats = { ...queriesStats };
106108
}
107109
} catch (error) {
108110
core.setFailed(error.message);

0 commit comments

Comments
 (0)