File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ name: Docs
1919on :
2020 pull_request :
2121 paths :
22+ - ' .github/workflows/docs.yml'
23+ - ' **/*.md'
2224 - ' docs/**'
2325
2426concurrency :
5052 steps :
5153 - uses : actions/checkout@v2
5254 - run : sudo npm install -g markdown-link-check@3.10.0
55+ # NOTE: Change command from `find . -name "*.md"` to `find . -not -path "*/node_modules/*" -not -path "*/.tox/*" -name "*.md"`
56+ # if you want to run check locally
5357 - run : |
54- for file in $(find ./docs -name "*.md"); do
58+ for file in $(find . -name "*.md"); do
5559 markdown-link-check -c .dlc.json -q "$file"
5660 done
Original file line number Diff line number Diff line change 11# DolphinScheduler for Docker and Kubernetes
22
3- * [ Start Up DolphinScheduler with Docker] ( https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/installation /docker.html )
3+ * [ Start Up DolphinScheduler with Docker] ( https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/start /docker.html )
44* [ Start Up DolphinScheduler with Kubernetes] ( https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/installation/kubernetes.html )
You can’t perform that action at this time.
0 commit comments