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 ebb69ab commit 181ec99Copy full SHA for 181ec99
1 file changed
.github/workflows/harper.yml
@@ -16,12 +16,16 @@ jobs:
16
- name: Install Harper CLI
17
run: cargo install --git https://github.com/Automattic/harper harper-cli --locked
18
19
- - name: Generate Harper compact report
+ - name: Generate Harper JSON 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
- --format compact || true
+ --format json \
25
+ > harper-report.json || true
26
+
27
+ - name: Show Harper Report
28
+ run: cat harper-report.json
29
30
- name: Run Harper
31
0 commit comments