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