-
Notifications
You must be signed in to change notification settings - Fork 39
64 lines (49 loc) · 1.35 KB
/
static_analysis.yml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Static analysis
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-node
- name: Run prettier
run: npx prettier --check .
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-node
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: |
**.md
**.html
- name: Run cspell on changed files
id: run-cspell
continue-on-error: true
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: npx cspell --files $ALL_CHANGED_FILES
- name: Report spellcheck failures
if: steps.run-cspell.outcome != 'success'
run: echo "::notice::Spellcheck found issues in some or all modified files"
lint-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-node
- name: Run eslint
run: npx eslint
lint-markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-node
- name: Run markdownlint
run: npx markdownlint -c '.markdownlint.jsonc' -p '.gitignore' .