mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
actions: add eslint reviewdog
This commit is contained in:
parent
301877e2e1
commit
590ad68513
1 changed files with 25 additions and 0 deletions
25
.github/workflows/reviewdog.yml
vendored
Normal file
25
.github/workflows/reviewdog.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
name: reviewdog
|
||||||
|
on: [pull_request]
|
||||||
|
jobs:
|
||||||
|
eslint:
|
||||||
|
name: runner / eslint
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pull-requests: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Setup pnpm
|
||||||
|
uses: pnpm/action-setup@v2
|
||||||
|
with:
|
||||||
|
version: latest
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
cache: "pnpm"
|
||||||
|
- run: pnpm install
|
||||||
|
- uses: reviewdog/action-eslint@v1
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
reporter: github-pr-review
|
||||||
|
eslint_flags: "--ignore-path .gitignore --ext .js,.vue ."
|
Loading…
Reference in a new issue