Skip to content

Commit f6fb60c

Browse files
committed
ci: replace rg with grep/find — rg not available on ubuntu-latest runner
1 parent 008e053 commit f6fb60c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525

2626
- name: Verify Mermaid blocks
2727
run: |
28-
rg '```mermaid' docs README.md
28+
grep -rl '```mermaid' docs README.md
2929
3030
- name: Validate JSON formatting
3131
run: |
32-
for file in $(rg --files -g '*.json' impl); do
33-
jq empty "$file"
32+
find impl -name '*.json' 2>/dev/null | while read f; do
33+
jq empty "$f"
3434
done

0 commit comments

Comments
 (0)