We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4118ded commit e7c5300Copy full SHA for e7c5300
1 file changed
.github/workflows/harper.yml
@@ -16,6 +16,14 @@ jobs:
16
- name: Install Harper CLI
17
run: cargo install --git https://github.com/Automattic/harper harper-cli --locked
18
19
+ - name: Generate Harper spelling report
20
+ run: |
21
+ find docs src/pages -type f \( -name "*.md" -o -name "*.mdx" \) -print0 | \
22
+ xargs -0 harper-cli lint \
23
+ --user-dict-path ./.harper-dictionary.txt \
24
+ --only Spelling::SpellCheck \
25
+ --format compact || true
26
+
27
- name: Run Harper
28
run: |
29
find docs src/pages -type f \( -name "*.md" -o -name "*.mdx" \) -print0 | \
0 commit comments