Skip to content

Commit

Permalink
run tslint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kalyvitis committed Jun 23, 2020
1 parent af252d2 commit b8ac06a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/setup-tracer.js.map

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

8 changes: 4 additions & 4 deletions src/setup-tracer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ async function run() {
}

core.startGroup('Load language configuration');

const config = await configUtils.loadConfig();

languages = await util.getLanguages();
// If the languages parameter was not given and no languages were
// detected then fail here as this is a workflow configuration error.
Expand All @@ -163,10 +163,10 @@ async function run() {
analysisPaths.includeAndExcludeAnalysisPaths(config, languages);

core.endGroup();

} catch (e) {
core.setFailed(e.message);
await util.reportActionAborted('init', e.message, );
await util.reportActionAborted('init', e.message);
return;
}

Expand Down

0 comments on commit b8ac06a

Please sign in to comment.