2018-08-24 14:35:42 +00:00
|
|
|
version: 2
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
docker:
|
2018-09-05 15:45:45 +00:00
|
|
|
- image: cypress/base:8
|
|
|
|
environment:
|
|
|
|
## this enables colors in the output
|
|
|
|
TERM: xterm
|
|
|
|
CYPRESS_baseUrl: http://localhost:5000
|
|
|
|
working_directory: ~/app
|
2018-08-24 14:35:42 +00:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- restore_cache:
|
2018-09-05 15:45:45 +00:00
|
|
|
name: Restore Yarn and Cypress Cache
|
2018-08-29 16:34:07 +00:00
|
|
|
keys:
|
2018-09-05 15:45:45 +00:00
|
|
|
- v1-deps-{{ .Branch }}-{{ checksum "package.json" }}
|
|
|
|
- v1-deps-{{ .Branch }}
|
|
|
|
- v1-deps
|
2018-08-24 14:35:42 +00:00
|
|
|
- run:
|
2018-08-29 16:34:07 +00:00
|
|
|
name: Install Dependencies
|
2018-09-05 15:45:45 +00:00
|
|
|
command: |
|
|
|
|
yarn install --frozen-lockfile
|
2018-08-24 14:35:42 +00:00
|
|
|
- save_cache:
|
2018-09-05 15:45:45 +00:00
|
|
|
name: Save Yarn and Cypress Cache
|
|
|
|
key: v1-deps-{{ .Branch }}-{{ checksum "package.json" }}
|
2018-08-24 14:35:42 +00:00
|
|
|
paths:
|
2018-09-05 15:45:45 +00:00
|
|
|
- ~/.cache
|
2018-08-29 16:34:07 +00:00
|
|
|
- run:
|
|
|
|
name: Install flow-typed
|
|
|
|
command: yarn run flow-typed install
|
2018-09-05 08:40:34 +00:00
|
|
|
- run:
|
|
|
|
name: Change git config to support UTF8 filename
|
|
|
|
command: git config --global core.quotepath false
|
2018-08-24 14:35:42 +00:00
|
|
|
- run:
|
2018-09-05 15:45:45 +00:00
|
|
|
name: Linting and unit test
|
2018-08-24 14:35:42 +00:00
|
|
|
command: yarn test
|
2018-09-05 15:45:45 +00:00
|
|
|
- run:
|
|
|
|
name: End to end test
|
|
|
|
command: |
|
|
|
|
yarn run compile
|
|
|
|
yarn run serve:embauche &
|
|
|
|
yarn run cypress run --record --key 21660df5-36a5-4c49-b23d-801799b0c759
|