cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.65.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/workflows/docs.yml

34lines · modecode

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