forked from etalab/geo.data.gouv.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
39 lines (35 loc) · 890 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
general:
branches:
ignore:
- gh-pages
machine:
environment:
YARN_VERSION: 0.19.1
PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6
dependencies:
pre:
- |
if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then
echo "Download and install Yarn."
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION
else
echo "The correct version of Yarn is already installed."
fi
override:
- yarn install
cache_directories:
- ~/.yarn
- ~/.cache/yarn
test:
override:
- yarn lint
- yarn test
deployment:
production:
branch: master
commands:
- git config --global user.email "[email protected]"
- git config --global user.name "CircleCI"
- npm run build && npm run deploy