Temporarily disable Windows in CI (#7773)

This commit is contained in:
Ian Schmitz
2019-10-02 22:11:25 -07:00
committed by GitHub
parent 7fae307aef
commit e51ea135e1
5 changed files with 91 additions and 93 deletions

View File

@@ -124,9 +124,11 @@ checkBrowsers(paths.appPath, isInteractive)
err => {
const tscCompileOnError = process.env.TSC_COMPILE_ON_ERROR === 'true';
if (tscCompileOnError) {
console.log(chalk.yellow(
'Compiled with the following type errors (you may want to check these before deploying your app):\n'
));
console.log(
chalk.yellow(
'Compiled with the following type errors (you may want to check these before deploying your app):\n'
)
);
printBuildError(err);
} else {
console.log(chalk.red('Failed to compile.\n'));