chore(ci): remove second smoke test with --experimental-static-build flag (#2748)

This commit is contained in:
Nate Moore 2022-03-10 09:23:54 -06:00 committed by GitHub
parent 7c064f8f4f
commit 567008cfc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();
}
}