From 929087b428b302d99170002f446d9e6708a288d5 Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Fri, 5 Apr 2019 11:42:12 -0700 Subject: [PATCH] add flow check to windows ci (#21401) Summary: add flow check to windows ci Pull Request resolved: https://github.com/facebook/react-native/pull/21401 Differential Revision: D14807935 Pulled By: hramos fbshipit-source-id: 38354aa498fe7783966e8bf1895286c690eed90a --- .appveyor/config.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.appveyor/config.yml b/.appveyor/config.yml index cf4098f1d..545f955ab 100644 --- a/.appveyor/config.yml +++ b/.appveyor/config.yml @@ -30,17 +30,16 @@ install: - appveyor DownloadFile "%NDK_TOOLS_URL%" -FileName "%TMP%/ndk.zip" - 7z x "%TMP%/ndk.zip" -o"%ANDROID_HOME%" > nul - - ps: Install-Product node $env:nodejs_version - - node --version - - yarn --version + - ps: Install-Product node $env:nodejs_version x64 + - npx envinfo@latest - appveyor-retry yarn install build_script: + - yarn run flow-check-android + - yarn run flow-check-ios + - yarn run test - gradlew.bat RNTester:android:app:assembleRelease -test_script: - - npm test - cache: - node_modules - "%LOCALAPPDATA%/Yarn"