-
-
Notifications
You must be signed in to change notification settings - Fork 53
38 lines (33 loc) · 931 Bytes
/
pr.yml
File metadata and controls
38 lines (33 loc) · 931 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
name: PR
on: pull_request
concurrency:
group: pr-${{ github.ref }}
cancel-in-progress: true
permissions:
packages: read
jobs:
superlinter:
name: Lint markdown
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Lint codebase
uses: docker://github/super-linter:v3.8.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
VALIDATE_MD: true
DEFAULT_BRANCH: main
check-spelling:
name: Spellcheck markdown
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Check spelling
# streetsidesoftware/cspell-action v8.2.0
uses: streetsidesoftware/cspell-action@d5d910b521ad408f1e7383c24609079f5a88bdca
with:
use_cspell_files: true
incremental_files_only: false