cloudflare/pint
Publicmirrored from https://github.com/cloudflare/pintAvailable
.github/workflows/docs.yml
35lines · modecode
| 1 | name: Spellcheck |
| 2 | on: [pull_request] |
| 3 | |
| 4 | permissions: |
| 5 | pages: write |
| 6 | |
| 7 | jobs: |
| 8 | spellcheck: |
| 9 | name: Spellcheck |
| 10 | runs-on: ubuntu-latest |
| 11 | steps: |
| 12 | - name: Check out code |
| 13 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
| 14 | with: |
| 15 | show-progress: false |
| 16 | |
| 17 | - name: Spellcheck |
| 18 | uses: rojopolis/spellcheck-github-actions@23dc186319866e1de224f94fe1d31b72797aeec7 # 0.48.0 |
| 19 | with: |
| 20 | config_path: .github/spellcheck/config.yml |
| 21 | |
| 22 | markdown: |
| 23 | name: Markdownlint |
| 24 | runs-on: ubuntu-latest |
| 25 | steps: |
| 26 | - name: Check out code |
| 27 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
| 28 | with: |
| 29 | show-progress: false |
| 30 | |
| 31 | - name: Markdownlint |
| 32 | uses: nosborn/github-action-markdown-cli@58bcfd1af530d87a13d51b76e6713b52602e3613 # v3.4.0 |
| 33 | with: |
| 34 | files: . |
| 35 | config_file: ".markdownlint.json" |
| 36 | |