File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 23
23
uses : PHPCSStandards/.github/.github/workflows/reusable-yamllint.yml@main
24
24
with :
25
25
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"
You can’t perform that action at this time.
0 commit comments