cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9d6ffac5ee505d7cc8ff4e104364bb42ce94d26e

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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
14 with:
15 show-progress: false
16
17 - name: Spellcheck
18 uses: rojopolis/spellcheck-github-actions@d5aba66a94528674ea744124f9ebcfd55e945836 # 0.43.1
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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
28 with:
29 show-progress: false
30
31 - name: Markdownlint
32 uses: nosborn/github-action-markdown-cli@9b5e871c11cc0649c5ac2526af22e23525fa344d # v3.3.0
33 with:
34 files: .
35 config_file: ".markdownlint.json"
36