mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
26 lines
784 B
YAML
26 lines
784 B
YAML
|
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 ."
|