Merge pull request #64 from pauby/doc/auto-login-not-32-on-64 #16
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: Linting | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: write | |
issues: write | |
jobs: | |
misspell: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haya14busa/action-cond@v1 | |
id: reporter | |
with: | |
cond: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target' }} | |
if_true: "github-pr-review" | |
if_false: "github-check" | |
- name: Setup ReviewDog | |
uses: reviewdog/[email protected] | |
- name: Run misspell with reviewdog | |
uses: reviewdog/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: ${{ steps.reporter.outputs.value }} | |
level: warning | |
locale: "US" | |
path: | | |
input | |
src | |
languagetool: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haya14busa/action-cond@v1 | |
id: reporter | |
with: | |
cond: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target' }} | |
if_true: "github-pr-review" | |
if_false: "github-check" | |
- name: Setup ReviewDog | |
uses: reviewdog/[email protected] | |
- name: Run LanguageTool with reviewdog | |
uses: reviewdog/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: ${{ steps.reporter.outputs.value }} | |
level: warning # Only valid if running on a commit, ie through push to master branch | |
language: en-US |