Run npm run build

This commit is contained in:
Eric Cornelissen 2020-11-25 22:46:30 +01:00
parent cd727934bf
commit e6ea8cbae0
8 changed files with 44 additions and 20 deletions

14
lib/analyze-action.js generated
View file

@ -56,8 +56,14 @@ async function run() {
}
await sendStatusReport(startedAt, stats);
}
run().catch((e) => {
core.setFailed(`analyze action failed: ${e}`);
console.log(e);
});
async function runWrapper() {
try {
await run();
}
catch (error) {
core.setFailed(`analyze action failed: ${error}`);
console.log(error);
}
}
void runWrapper();
//# sourceMappingURL=analyze-action.js.map