forked from desktop/desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
46 lines (39 loc) · 721 Bytes
/
circle.yml
File metadata and controls
46 lines (39 loc) · 721 Bytes
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
40
41
42
43
44
45
46
experimental:
notify:
branches:
only:
- master
- /^__release-.*/
machine:
xcode:
version: 7.3
dependencies:
cache_directories:
- "node_modules"
- "~/.electron"
pre:
- brew install node || brew upgrade node
- npm install -g [email protected]
- npm prune
- node -v
- npm -v
- cd app && npm prune && cd ..
override:
- npm install
- npm rebuild
- npm ls --prod || true
- npm ls --dev || true
compile:
override:
- npm run check-prettiness
- npm run lint
- npm run build:prod
test:
override:
- npm run test:setup
- npm test
deployment:
production:
branch: /^__release-.*/
commands:
- npm run publish