cloudflare/pint

Public

mirrored from https://github.com/cloudflare/pintAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
4d622a8dc35fbcf29dda75c704ef8d1c35f3ee08

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/docs.yml

35lines · modecode

1name: Spellcheck
2on: [pull_request]
3
4permissions:
5 pages: write
6
7jobs:
8 spellcheck:
9 name: Spellcheck
10 runs-on: ubuntu-latest
11 steps:
12 - name: Check out code
13 uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
14 with:
15 show-progress: false
16
17 - name: Spellcheck
18 uses: rojopolis/spellcheck-github-actions@16d0338a5a3b5e3111a078029fb9a07a8125053d # 0.55.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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
28 with:
29 show-progress: false
30
31 - name: Markdownlint
32 uses: nosborn/github-action-markdown-cli@508d6cefd8f0cc99eab5d2d4685b1d5f470042c1 # v3.5.0
33 with:
34 files: .
35 config_file: ".markdownlint.json"
36