Compare commits

...

1 Commits

Author SHA1 Message Date
dave caruso
610b20fe14 does this fix ci 2024-05-03 00:44:16 -07:00
2 changed files with 5 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ async function getDevServerURL() {
NEXT_TELEMETRY_DISABLED: "1",
// Print lots of debug logs in next.js:
// "DEBUG": "*",
PUPPETEER_SKIP_DOWNLOAD: true,
},
stdio: ["ignore", "pipe", "inherit"],
});

View File

@@ -26,7 +26,10 @@ async function tempDirToBuildIn() {
const install = Bun.spawn([bunExe(), "i"], {
cwd: dir,
env: bunEnv,
env: {
...bunEnv,
PUPPETEER_SKIP_DOWNLOAD: true,
},
stdin: "inherit",
stdout: "inherit",
stderr: "inherit",