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/init-action.js generated
View file

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