fix: when only tls.verify
, skip the logic of judging client cert
#8060
Workflow file for this run
This file contains hidden or 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: Doc Lint | |
on: | |
push: | |
paths: | |
- "docs/**" | |
- "**/*.md" | |
- ".github/workflows/doc-lint.yml" | |
pull_request: | |
branches: [master, "release/**"] | |
paths: | |
- "docs/**" | |
- "**/*.md" | |
- ".github/workflows/doc-lint.yml" | |
permissions: | |
contents: read | |
jobs: | |
markdownlint: | |
name: 🍇 Markdown | |
runs-on: ubuntu-latest | |
timeout-minutes: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 🚀 Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: "12.x" | |
- run: npm install -g [email protected] | |
- run: markdownlint '**/*.md' | |
- name: check category | |
run: | | |
./utils/check-category.py | |
- name: check Chinese doc | |
run: | | |
sudo pip3 install zhon | |
./utils/fix-zh-doc-segment.py > \ | |
/tmp/check.log 2>&1 || (cat /tmp/check.log && exit 1) | |
if grep "find broken newline in file: " /tmp/check.log; then | |
cat /tmp/check.log | |
echo "Newline can't appear in the middle of Chinese sentences." | |
echo "You need to run ./utils/fix-zh-doc-segment.py to fix them." | |
exit 1 | |
fi | |
Chinse-Copywriting-lint: | |
name: Chinese Copywriting | |
runs-on: ubuntu-latest | |
timeout-minutes: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Check Chinese copywriting | |
uses: ./.github/actions/autocorrect | |
with: | |
args: autocorrect --lint --no-diff-bg-color ./docs/zh/latest/ |