File tree Expand file tree Collapse file tree 1 file changed +6
-18
lines changed Expand file tree Collapse file tree 1 file changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -33,33 +33,22 @@ jobs:
3333 key : v1-deps-{{ checksum "yarn.lock" }}
3434 paths :
3535 - ~/.cache/yarn
36-
36+
3737 - persist_to_workspace :
3838 root : ~/project
3939 paths :
4040 - node_modules
4141 - packages/*/node_modules
4242 - packages/@vuepress/*/node_modules
43-
43+
4444 # ------------------------------------------------------------
4545 # 2. Run parallel jobs:
46- # => lerna-boostrap
4746 # => tsc
4847 # => tests
4948 # => linter
5049 # => docs linter
5150 # ------------------------------------------------------------
5251
53- lerna-bootstrap :
54- << : *defaults
55- steps :
56- - checkout
57- - attach_workspace :
58- at : ~/project
59- - run :
60- name : ' Lerna bootstrap'
61- command : yarn lerna:bootstrap
62-
6352 run-tsc :
6453 << : *defaults
6554 steps :
9281 at : ~/project
9382 - run :
9483 name : ' Run linter'
95- command : yarn lint:check
96-
84+ command : yarn lint
85+
9786 run-docs-linter-check :
9887 << : *defaults
9988 steps :
10392 - run :
10493 name : ' Run md linter'
10594 command : yarn workspace docs lint-md
106-
95+
10796 # ------------------------------------------------------------
10897 # 3. Build VuePress
10998 # ------------------------------------------------------------
@@ -127,9 +116,8 @@ workflows:
127116 build :
128117 jobs :
129118 - install-dependencies
130- - lerna-bootstrap : { requires: [install-dependencies] }
131119 - run-linter-check : { requires: [install-dependencies] }
132120 - run-docs-linter-check : { requires: [install-dependencies] }
133121 - run-tsc : { requires: [install-dependencies] }
134122 - run-tests : { requires: [run-tsc] }
135- - build : { requires: [run-tests, run-linter-check, run-docs-linter-check, lerna-bootstrap ] }
123+ - build : { requires: [run-tests, run-linter-check, run-docs-linter-check] }
You can’t perform that action at this time.
0 commit comments