We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59aac29 commit 684e84fCopy full SHA for 684e84f
1 file changed
.github/workflows/review.yml
@@ -0,0 +1,21 @@
1
+name: PR Review Bot
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
7
+jobs:
8
+ lint:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - name: Setup Node.js
13
+ uses: actions/setup-node@v4
14
+ with:
15
+ node-version: 18
16
+ - run: pnpm install
17
+ - run: pnpm run lint
18
+ - uses: reviewdog/action-eslint@v1
19
20
+ github_token: ${{ secrets.GITHUB_TOKEN }}
21
+ reporter: github-pr-review
0 commit comments