We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 008e053 commit f6fb60cCopy full SHA for f6fb60c
1 file changed
.github/workflows/ci.yml
@@ -25,10 +25,10 @@ jobs:
25
26
- name: Verify Mermaid blocks
27
run: |
28
- rg '```mermaid' docs README.md
+ grep -rl '```mermaid' docs README.md
29
30
- name: Validate JSON formatting
31
32
- for file in $(rg --files -g '*.json' impl); do
33
- jq empty "$file"
+ find impl -name '*.json' 2>/dev/null | while read f; do
+ jq empty "$f"
34
done
0 commit comments