1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 21:05:01 +00:00
mon-entreprise/circle.yml
2018-08-29 18:37:25 +02:00

26 lines
678 B
YAML

version: 2
jobs:
build:
working_directory: ~/mern-starter
docker:
- image: circleci/node:8.10.0
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run:
name: Install Dependencies
command: yarn install
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- run:
name: Install flow-typed
command: yarn run flow-typed install
- run:
name: test
command: yarn test