forked from firefox-devtools/devtools-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
38 lines (34 loc) · 760 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
machine:
node:
version: 7.7.2
environment:
DOWNLOADS_PATH: "$HOME/downloads"
YARN_PATH: "$HOME/.yarn"
YARN_VERSION: 0.24.5
PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
test:
post:
- cd ./packages/devtools-launchpad; yarn test
- cd ./packages/devtools-source-map; yarn test
- cd ./packages/devtools-utils; yarn test
- cd ./packages/devtools-reps; yarn test
- yarn lint-css
- yarn lint-js
- yarn flow
- yarn license-check
dependencies:
pre:
- ./bin/install-yarn
cache_directories:
- ~/.cache/yarn
- ~/.yarn
override:
- yarn
general:
artifacts:
- "yarn-error.log"
experimental:
notify:
branches:
only:
- master