cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.81.1

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/workflows/docs.yml

33lines · 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
14 with:
15 show-progress: false
16
17 - name: Spellcheck
18 uses: crate-ci/typos@bbaefadf97b0ec5fdc942684b647f1a6ab250274 # v1.46.0
19
20 markdown:
21 name: Markdownlint
22 runs-on: ubuntu-latest
23 steps:
24 - name: Check out code
25 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
26 with:
27 show-progress: false
28
29 - name: Markdownlint
30 uses: nosborn/github-action-markdown-cli@508d6cefd8f0cc99eab5d2d4685b1d5f470042c1 # v3.5.0
31 with:
32 files: .
33 config_file: ".markdownlint.json"