feat: example use Ory Hydra. Spring Boot 2 (Java 11), Angular, Docker (Docker Compose) #238
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
name: spellchecker | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
misspell: | |
name: markdown spellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code. | |
uses: actions/checkout@v1 | |
- name: misspell | |
id: check_for_typos | |
uses: reviewdog/action-misspell@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
path: "./*" | |
locale: "US" | |
level: "warning" | |
pattern: | | |
*.md | |
*.mdx |