File tree Expand file tree Collapse file tree 2 files changed +62
-3
lines changed Expand file tree Collapse file tree 2 files changed +62
-3
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+
3+ defaults : &defaults
4+ working_directory : ~/repo
5+ docker :
6+ - image : circleci/node:8-browsers
7+
8+ jobs :
9+ install :
10+ << : *defaults
11+ steps :
12+ - checkout
13+ - restore_cache :
14+ keys :
15+ - v1-vue-class-component-{{ .Branch }}-{{ checksum "yarn.lock" }}
16+ - v1-vue-class-component-{{ .Branch }}-
17+ - v1-vue-class-component-
18+ - run : yarn install
19+ - save_cache :
20+ paths :
21+ - node_modules
22+ key : v1-vue-class-component-{{ .Branch }}-{{ checksum "yarn.lock" }}
23+ - persist_to_workspace :
24+ root : ~/
25+ paths :
26+ - repo
27+
28+ build :
29+ << : *defaults
30+ steps :
31+ - attach_workspace :
32+ at : ~/
33+ - run : yarn build
34+
35+ example-build :
36+ << : *defaults
37+ steps :
38+ - attach_workspace :
39+ at : ~/
40+ - run : yarn example
41+
42+ test :
43+ << : *defaults
44+ steps :
45+ - attach_workspace :
46+ at : ~/
47+ - run : yarn test
48+
49+ workflows :
50+ version : 2
51+ build-and-test :
52+ jobs :
53+ - install
54+ - build :
55+ requires :
56+ - install
57+ - example-build :
58+ requires :
59+ - install
60+ - test :
61+ requires :
62+ - install
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments