Attempt to catch server start errors in the GitHub workflow.

This commit is contained in:
00Fjongl 2024-07-24 21:59:26 -05:00
parent 1b985743e8
commit a1f4c13fc5

View file

@ -1,3 +1,8 @@
(async () => { (async () => {
await import("./src/server.mjs"); try {
await import("./src/server.mjs");
} catch (e) {
console.error(e);
process.exit(1);
}
})(); })();