1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 22:15:02 +00:00
mon-entreprise/circle.yml
2018-08-24 17:04:33 +02:00

26 lines
673 B
YAML

version: 2
jobs:
build:
working_directory: ~/mern-starter
docker:
- image: circleci/node:8.10.0
steps:
- checkout
- run:
name: install-yarn
command: 'sudo npm install -g yarn'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-yarn-wee
command: yarn
- run:
name: install-flow-typed-wee
command: yarn run flow-typed install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: test
command: yarn test