Skip to content

Commit dcdb9df

Browse files
committed
infra/linters: Replace spellcheck with misspell
Spellcheck is hard to maintain since it complains about *every* unknown word, including technical terms, acronyms, and names. Misspell is a more relaxed spellchecker, which only complains about *common* misspellings and lets the user handle new words such as the previous examples. Signed-off-by: Alex Apostolescu <[email protected]>
1 parent 85302e1 commit dcdb9df

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/actions.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ jobs:
2424
with:
2525
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626

27-
spellcheck:
28-
name: Spellcheck
27+
misspell:
28+
name: misspell
2929
runs-on: ubuntu-latest
3030
steps:
31-
- name: Spellcheck
32-
uses: open-education-hub/actions/spellcheck@main
31+
- uses: actions/checkout@v4
32+
- name: misspell
33+
uses: reviewdog/action-misspell@v1
3334
with:
34-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35+
locale: "US"
36+
level: "info"

0 commit comments

Comments
 (0)