docs: update blue green update document #849
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Docs | |
on: [pull_request] | |
jobs: | |
check-docs-markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@main | |
- name: Install markdownlint | |
run: sudo npm install -g markdownlint-cli | |
- name: Markdown lint | |
run: markdownlint -c .github/workflows/markdownlint.json ./ | |
# - name: Markdown link check | |
# uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
# with: | |
# use-quiet-mode: 'yes' | |
# check-modified-files-only: 'yes' | |
# base-branch: 'main' | |
check-docs-directory: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@main | |
- name: check directory config | |
run: python3 .github/scripts/directory_check.py directory.json $(pwd)/docs |