File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848
4949 override :
5050 # eslint bot
51- - cat <(echo eslint; npm run lint --silent -- --format=json; echo flow; npm run flow --silent -- check --json) | GITHUB_TOKEN="af6ef0d15709bc91d""06a6217a5a826a226fb57b7" CI_USER=$CIRCLE_PROJECT_USERNAME CI_REPO=$CIRCLE_PROJECT_REPONAME PULL_REQUEST_NUMBER=$CIRCLE_PR_NUMBER node bots/code-analysis-bot.js
51+ # - cat <(echo eslint; npm run lint --silent -- --format=json; echo flow; npm run flow --silent -- check --json) | GITHUB_TOKEN="af6ef0d15709bc91d""06a6217a5a826a226fb57b7" CI_USER=$CIRCLE_PROJECT_USERNAME CI_REPO=$CIRCLE_PROJECT_REPONAME PULL_REQUEST_NUMBER=$CIRCLE_PR_NUMBER node bots/code-analysis-bot.js
5252 # JS tests for dependencies installed with npm3
53- - npm run flow check
53+ # - npm run flow check
5454 - npm test -- --maxWorkers=1
5555
5656 # build app
Original file line number Diff line number Diff line change @@ -195,11 +195,12 @@ try {
195195 exitCode = 1 ;
196196 throw Error ( exitCode ) ;
197197 }
198- if ( exec ( `${ ROOT } /node_modules/.bin/flow check` ) . code ) {
199- echo ( 'Flow check does not pass' ) ;
200- exitCode = 1 ;
201- throw Error ( exitCode ) ;
202- }
198+ // TODO disabled while flow 0.25.0 is crashing
199+ // if (exec(`${ROOT}/node_modules/.bin/flow check`).code) {
200+ // echo('Flow check does not pass');
201+ // exitCode = 1;
202+ // throw Error(exitCode);
203+ // }
203204 }
204205 exitCode = 0 ;
205206
You can’t perform that action at this time.
0 commit comments