mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
24 lines
925 B
YAML
24 lines
925 B
YAML
name: Spell Checker
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
spell_checking:
|
|
name: runner / LanguageTools
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: reviewdog/action-languagetool@v1
|
|
with:
|
|
github_token: ${{ secrets.REVIEWDOG_TOKEN }}
|
|
# Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].
|
|
reporter: 'github-pr-review'
|
|
# Change reporter level if you need.
|
|
level: 'error'
|
|
patterns: '**/*.md **/*.txt **/*.mdx'
|
|
#enabled_categories: 'STYLE,PLAIN_ENGLISH,WHITESPACE_RULE,EN_QUOTES,DASH_RULE,WORD_CONTAINS_UNDERSCORE,UPPERCASE_SENTENCE_START,ARROWS,COMMA_PARENTHESIS_WHITESPACE,UNLIKELY_OPENING_PUNCTUATION,SENTENCE_WHITESPACE,EN_UNPAIRED_BRACKETS,PHRASE_REPETITION,PUNCTUATION_PARAGRAPH_END'
|
|
disabled_categories: ''
|
|
disabled_rules: ''
|