formatting

This commit is contained in:
Marco Gario 2024-12-11 15:08:27 +00:00
parent 849b60e504
commit 47dd68ef62
2 changed files with 5 additions and 4 deletions

View file

@ -25,7 +25,6 @@ async function runWrapper() {
process.kill(Number(pid));
}
const config = await configUtils.getConfig(
actionsUtil.getTemporaryDirectory(),
logger,
@ -60,9 +59,11 @@ async function runWrapper() {
},
);
}
} catch(error) {
} catch (error) {
// A failure in the post step should not fail the entire action.
logger.warning(`start-proxy post-action step failed: ${getErrorMessage(error)}`);
logger.warning(
`start-proxy post-action step failed: ${getErrorMessage(error)}`,
);
}
}