mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 23:14:28 +08:00
33 lines
858 B
YAML
33 lines
858 B
YAML
name: reviewdog
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, edited]
|
|
|
|
# Cancel old builds on new commit for same workflow + branch/PR
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
misspell:
|
|
name: runner / misspell
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code.
|
|
uses: actions/checkout@v4
|
|
- name: misspell
|
|
uses: reviewdog/action-misspell@v1
|
|
with:
|
|
github_token: ${{ secrets.github_token }}
|
|
locale: 'US'
|
|
reporter: github-pr-review
|
|
level: error
|
|
exclude: |
|
|
*.css
|
|
**/package.json
|
|
**/package-lock.json
|
|
./.git/*
|
|
*.ipynb
|
|
./i18n/README.*.md
|
|
./studio/public/monaco-editor/*
|