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.
20 lines
483 B
20 lines
483 B
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/node:8
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
keys:
|
|
- dependencies-{{ checksum "yarn.lock" }}
|
|
- run:
|
|
name: Install
|
|
command: yarn install --pure-lockfile
|
|
- save_cache:
|
|
paths:
|
|
- node_modules
|
|
key: dependencies-{{ checksum "yarn.lock" }}
|
|
- run:
|
|
name: Check Prettier, ESLint, Flow
|
|
command: yarn ci-check
|
|
|