Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
marcogario committed Dec 11, 2024
1 parent 849b60e commit 47dd68e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/start-proxy-action-post.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions src/start-proxy-action-post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ async function runWrapper() {
process.kill(Number(pid));
}


const config = await configUtils.getConfig(
actionsUtil.getTemporaryDirectory(),
logger,
Expand Down Expand Up @@ -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)}`,
);
}
}

Expand Down

0 comments on commit 47dd68e

Please sign in to comment.