1name: markdown 2 3permissions: 4 contents: read 5 6on: 7 pull_request: 8 paths: 9 - .github/workflows/markdown.yml 10 - "**/*.md" 11 12jobs: 13 markdownlint: 14 timeout-minutes: 5 15 runs-on: ubuntu-22.04 16 steps: 17 - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 18 - uses: DavidAnson/markdownlint-cli2-action@b4c9feab76d8025d1e83c653fa3990936df0e6c8 19 with: 20 globs: | 21 **/*.md 22 !**/node_modules/** 23 !target/**