Skip to content

Commit

Permalink
added CI on documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MasWag committed Aug 22, 2024
1 parent 463476f commit 9637104
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/reviewdoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: reviewdog for documents
on: [pull_request]
jobs:
misspell:
name: runner / misspell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: misspell
uses: reviewdog/action-misspell@v1
with:
github_token: ${{ secrets.github_token }}
locale: "US"
level: info
languagetool:
name: runner / langaugetool
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: misspell
uses: reviewdog/action-languagetool@v1
with:
github_token: ${{ secrets.github_token }}
# Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].
reporter: github-pr-review
level: info

0 comments on commit 9637104

Please sign in to comment.