You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
630 B

version: 2
docker_defaults: &docker_defaults
docker:
- image: circleci/node:9.5
jobs:
build:
<<: *docker_defaults
steps:
- checkout
- run:
name: Dependencies
command: yarn
- run:
name: Flow typed
command: yarn flow-typed
- run:
name: Temporary remove flow definitions for react-redux
command: rm flow-typed/npm/react-redux_v5.x.x.js
- run:
name: Lint
command: yarn lint
- run:
name: Flow
command: yarn flow
- run:
name: Compile
command: yarn compile