run tslint --fix

This commit is contained in:
Alex Kalyvitis 2020-06-23 18:41:16 +02:00
parent af252d2f0d
commit b8ac06a9c8
2 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View file

@ -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.
@ -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;
}