-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (29 loc) · 821 Bytes
/
Copy pathtests.yml
File metadata and controls
39 lines (29 loc) · 821 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: Run tests
# mkdocs branch pushes run the same spellcheck jobs via deploy.yml instead,
# gating the build/deploy step - no need to run them twice here too.
on:
push:
branches-ignore: [ mkdocs ]
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Codespell
uses: codespell-project/actions-codespell@v1
cspell:
name: Check for spelling errors (cspell)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Cspell
run: npx cspell --no-progress "**/*.md"