Add reviewdog

This commit is contained in:
AkiraFukushima 2023-12-02 16:32:33 +09:00
parent a10ea0a081
commit f2946bd0d6
No known key found for this signature in database
GPG Key ID: B6E51BAC4DE1A957
1 changed files with 24 additions and 0 deletions

24
.github/workflows/lint.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Lint
on:
pull_request:
jobs:
reviewdog:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install
run: |
yarn install
- uses: reviewdog/action-setup@v1
- name: Run eslint
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }}
run: |
yarn run lint | reviewdog -f=eslint -reporter=github-pr-review -fail-on-error=true