cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.43.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/workflows/docs.yml

28lines · 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@v3
11
12 - name: Spellcheck
13 uses: rojopolis/spellcheck-github-actions@0.30.0
14 with:
15 config_path: .github/spellcheck/config.yml
16
17 markdown:
18 name: Markdownlint
19 runs-on: ubuntu-latest
20 steps:
21 - name: Check out code
22 uses: actions/checkout@v3
23
24 - name: Markdownlint
25 uses: nosborn/github-action-markdown-cli@v3.3.0
26 with:
27 files: .
28 config_file: ".markdownlint.json"
29