Skip to content

Commit b948e1d

Browse files
committed
TESTING - basic QA / add spellcheck
1 parent 30d6063 commit b948e1d

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/basic-qa.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,45 @@ jobs:
2323
uses: PHPCSStandards/.github/.github/workflows/reusable-yamllint.yml@main
2424
with:
2525
strict: true
26+
27+
spellcheck-1:
28+
name: Spellcheck-1
29+
30+
runs-on: ubuntu-latest
31+
32+
steps:
33+
- name: Checkout code
34+
uses: actions/checkout@v4
35+
36+
- name: Spellcheck
37+
uses: rojopolis/spellcheck-github-actions@v0
38+
39+
spellcheck-2:
40+
name: Spellcheck-2
41+
42+
runs-on: ubuntu-latest
43+
44+
steps:
45+
- name: Checkout code
46+
uses: actions/checkout@v4
47+
48+
- name: Install markdown-spellcheck
49+
run: npm install -g markdown-spellcheck
50+
51+
- name: Spellcheck
52+
run: mdspell "**/*.md" --en-us --report
53+
54+
spellcheck-3:
55+
name: Spellcheck-3
56+
57+
runs-on: ubuntu-latest
58+
59+
steps:
60+
- name: Checkout code
61+
uses: actions/checkout@v4
62+
63+
- name: Install markdown-spellcheck
64+
run: npm install -g cspell
65+
66+
- name: Spellcheck
67+
uses: cspell "**/*.md"

0 commit comments

Comments
 (0)