From 567008cfc1c9780853e2782c879703931ca66c3b Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Thu, 10 Mar 2022 09:23:54 -0600 Subject: [PATCH] chore(ci): remove second smoke test with --experimental-static-build flag (#2748) --- scripts/smoke/index.js | 14 -------------- 1 file changed, 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(); } }