File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 47
47
# => tsc
48
48
# => tests
49
49
# => linter
50
+ # => docs linter
50
51
# ------------------------------------------------------------
51
52
52
53
lerna-bootstrap :
92
93
- run :
93
94
name : ' Run linter'
94
95
command : yarn lint:check
96
+
97
+ run-docs-linter-check :
98
+ << : *defaults
99
+ steps :
100
+ - checkout
101
+ - attach_workspace :
102
+ at : ~/project
103
+ - run :
104
+ name : ' Run md linter'
105
+ command : yarn workspace docs lint-md
95
106
96
107
# ------------------------------------------------------------
97
108
# 3. Build VuePress
@@ -118,6 +129,7 @@ workflows:
118
129
- install-dependencies
119
130
- lerna-bootstrap : { requires: [install-dependencies] }
120
131
- run-linter-check : { requires: [install-dependencies] }
132
+ - run-docs-linter-check : { requires: [install-dependencies] }
121
133
- run-tsc : { requires: [install-dependencies] }
122
134
- run-tests : { requires: [run-tsc] }
123
- - build : { requires: [run-tests, run-linter-check, lerna-bootstrap] }
135
+ - build : { requires: [run-tests, run-linter-check, run-docs-linter-check, lerna-bootstrap] }
You can’t perform that action at this time.
0 commit comments