Skip to content

Commit

Permalink
Fix linter violations
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Partington committed Jan 6, 2021
1 parent 4e46a49 commit 023add5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/analyze-action.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions src/analyze-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ async function run() {
const gitHubVersion = await util.getGitHubVersion(apiDetails);
const uploadStats = await upload_lib.uploadFromActions(
outputDir,
parseRepositoryNwo(actionsUtil.getRequiredEnvParam("GITHUB_REPOSITORY")),
parseRepositoryNwo(
actionsUtil.getRequiredEnvParam("GITHUB_REPOSITORY")
),
await actionsUtil.getCommitOid(),
await actionsUtil.getRef(),
await actionsUtil.getAnalysisKey(),
Expand All @@ -102,7 +104,7 @@ async function run() {
stats = { ...queriesStats, ...uploadStats };
} else {
logger.info("Not uploading results");
stats = { ...queriesStats }
stats = { ...queriesStats };
}
} catch (error) {
core.setFailed(error.message);
Expand Down

0 comments on commit 023add5

Please sign in to comment.