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

View file

@ -51,8 +51,14 @@ async function run() {
}
await sendCompletedStatusReport(startedAt, language ? [language] : []);
}
run().catch((e) => {
core.setFailed(`autobuild action failed. ${e}`);
console.log(e);
});
async function runWrapper() {
try {
await run();
}
catch (error) {
core.setFailed(`autobuild action failed. ${error}`);
console.log(error);
}
}
void runWrapper();
//# sourceMappingURL=autobuild-action.js.map