Run npm run build
This commit is contained in:
parent
cd727934bf
commit
e6ea8cbae0
8 changed files with 44 additions and 20 deletions
14
lib/autobuild-action.js
generated
14
lib/autobuild-action.js
generated
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue