diff options
author | 2022-03-10 09:23:54 -0600 | |
---|---|---|
committer | 2022-03-10 09:23:54 -0600 | |
commit | 567008cfc1c9780853e2782c879703931ca66c3b (patch) | |
tree | 4564e4f672d072b5b6000a44eb222e89d9c3d30a /scripts/smoke/index.js | |
parent | 7c064f8f4fe5c0e1ed72f0847560f2cc5515d151 (diff) | |
download | astro-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.js | 14 |
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(); } } |