Merge branch 'main' into simon-engledew/lint-workspace
This commit is contained in:
commit
92df38732c
17 changed files with 89 additions and 42 deletions
14
lib/init-action.js
generated
14
lib/init-action.js
generated
|
|
@ -115,8 +115,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