We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 967633a commit c5f9275Copy full SHA for c5f9275
.github/workflows/reviewdog.yml
@@ -0,0 +1,32 @@
1
+name: Reviewdog
2
+on: [pull_request]
3
+
4
+jobs:
5
+ lint:
6
+ name: Lint Checks
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: actions/cache@v3
11
+ id: yarn-cache
12
+ with:
13
+ path: "./.yarn/cache"
14
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
15
+ restore-keys: |
16
+ ${{ runner.os }}-yarn-
17
18
+ - name: Install Dependencies
19
+ run: yarn install --check-cache
20
21
+ - uses: reviewdog/action-eslint@v1
22
+ name: ESLint Runner
23
24
+ reporter: github-pr-review
25
+ level: warning
26
27
+ - uses: EPMatt/reviewdog-action-tsc@v1
28
+ name: TSC Runner
29
30
+ github_token: ${{ secrets.github_token }}
31
32
0 commit comments