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.
26 lines
492 B
26 lines
492 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: Lint
|
|
command: yarn lint
|
|
- run:
|
|
name: Flow
|
|
command: yarn flow
|
|
- run:
|
|
name: Compile
|
|
command: yarn compile
|
|
|