Skip to content

sync blogs 2025-01-07-11-03-18 #1355

sync blogs 2025-01-07-11-03-18

sync blogs 2025-01-07-11-03-18 #1355

Workflow file for this run

name: Check Markdown
on: [pull_request]
jobs:
check-blog-markdown:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install markdownlint
run: sudo npm install -g markdownlint-cli
- name: Check markdown
run: markdownlint -c .ci/markdown_config.json $(git diff --name-only main...HEAD | grep -e "md$")