summaryrefslogtreecommitdiff
path: root/scripts/smoke/index.js
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2022-03-10 09:23:54 -0600
committerGravatar GitHub <noreply@github.com> 2022-03-10 09:23:54 -0600
commit567008cfc1c9780853e2782c879703931ca66c3b (patch)
tree4564e4f672d072b5b6000a44eb222e89d9c3d30a /scripts/smoke/index.js
parent7c064f8f4fe5c0e1ed72f0847560f2cc5515d151 (diff)
downloadastro-567008cfc1c9780853e2782c879703931ca66c3b.tar.gz
astro-567008cfc1c9780853e2782c879703931ca66c3b.tar.zst
astro-567008cfc1c9780853e2782c879703931ca66c3b.zip
chore(ci): remove second smoke test with --experimental-static-build flag (#2748)
Diffstat (limited to 'scripts/smoke/index.js')
-rw-r--r--scripts/smoke/index.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/smoke/index.js b/scripts/smoke/index.js
index 26ca3632d..354147cd6 100644
--- a/scripts/smoke/index.js
+++ b/scripts/smoke/index.js
@@ -52,20 +52,6 @@ async function run() {
console.log(err);
process.exit(1);
}
-
- // Run with the static build too (skip for remote repos)
- if (isExternal) {
- continue;
- }
-
- try {
- await execa('pnpm', ['run', 'build', '--', '--experimental-static-build'], { cwd: fileURLToPath(directory), stdout: 'inherit', stderr: 'inherit' });
- } catch (err) {
- console.log(err);
- process.exit(1);
- }
-
- console.log();
}
}