forked from refinedev/refine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add typos job (refinedev#5271)
* feat: add misspel job * chore: add concurrency and use checkout@v3 * chore: updates * chore: fail on error * feat: use typos cli * chore: update typos config * fix: typos * fix: ambiguous typos * feat: update typos config * fix: blog typos * fix: typo on user config * fix: revert changes on versioned docs * fix: build error * fix: typos on js vs ts blog post * fix: revert readme changes * fix: typo on readme * fix: revert redundant changes * fix: revert redundant changes again * chore: update .prettierrc * feat: add fix for inovice typo * docs(admonitions): add padding lines around admonitions * fix: build error * fix: remaining hiccups --------- Co-authored-by: Ali Emir Şen <[email protected]>
- Loading branch information
Showing
453 changed files
with
61,132 additions
and
67,758 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Documentation Spell Check | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
misspell: | ||
concurrency: | ||
group: ${{ github.ref }}-typos-lint | ||
cancel-in-progress: true | ||
name: Check spelling using typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code. | ||
uses: actions/checkout@v4 | ||
- name: typos | ||
id: check_for_typos | ||
uses: crate-ci/typos@master | ||
with: | ||
files: ./documentation/docs | ||
config: ./typos.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.