-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (37 loc) · 876 Bytes
/
Copy pathstatic_checks.yml
File metadata and controls
41 lines (37 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Static Checks
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-markdown:
name: Lint Markdown
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Lint files
uses: avto-dev/markdown-lint@v1.5.0
with:
config: "./docs/.markdownlint.yml"
args: "./docs/docs/**/*.+(md|mdx)"
misspell:
name: Check spelling using misspell
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v1
- name: misspell
id: check_for_typos
uses: reviewdog/action-misspell@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
path: "./docs"
locale: "US"
level: "warning"
pattern: |
*.md
*.mdx