Only one proc needed
Some checks are pending
CI / test (push) Waiting to run

This commit is contained in:
Corey Johnson 2025-11-07 15:29:27 -08:00
parent f404f7c99b
commit c2cf89f1d2

View File

@ -41,10 +41,7 @@ try {
const isDev = process.env.NODE_ENV !== "production"
const noElide = isDev ? "--elide-lines=0" : ""
procs = await Promise.all([
run(["bun", "run", noElide, "--filter=@workshop/http", "start"]),
run(["bun", "run", noElide, "--filter=@workshop/spike", "bot:discord"]),
])
procs = await Promise.all([run(["bun", "run", noElide, "--filter=@workshop/http", "start"])])
console.log("✅ All processes completed successfully")
} catch (error) {
console.error("❌ One or more processes failed:", error)