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