cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.63.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/workflows/docs.yml

32lines · modecode

1name: Spellcheck
2on: [pull_request]
3
4jobs:
5 spellcheck:
6 name: Spellcheck
7 runs-on: ubuntu-latest
8 steps:
9 - name: Check out code
10 uses: actions/checkout@v4
11 with:
12 show-progress: false
13
14 - name: Spellcheck
15 uses: rojopolis/spellcheck-github-actions@0.40.0
16 with:
17 config_path: .github/spellcheck/config.yml
18
19 markdown:
20 name: Markdownlint
21 runs-on: ubuntu-latest
22 steps:
23 - name: Check out code
24 uses: actions/checkout@v4
25 with:
26 show-progress: false
27
28 - name: Markdownlint
29 uses: nosborn/github-action-markdown-cli@v3.3.0
30 with:
31 files: .
32 config_file: ".markdownlint.json"