cloudflare/pint

Public

mirrored fromhttps://github.com/cloudflare/pintAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.75.0

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
14 with:
15 show-progress: false
16
17 - name: Spellcheck
18 uses: rojopolis/spellcheck-github-actions@739a1e3ceb79a98a5d4a9bf76f351137f9d78892 # 0.52.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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.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