@cryptotaxi247 / netdata-1 / commits / cfebda600

Added ReviewDOg CI checks for JavaScript (#7828)

James Mills committed Jan 25, 2020 at 11:55 UTC cfebda600cb16848a2c58360837f239298e3509e
1 file changed +12
.github/workflows/reviewdog.yml
+12
@@ -1,6 +1,18 @@
1 name: reviewdog
2 on: [pull_request]
3 jobs:
4 + eslint:
5 + name: runner / eslint
6 + runs-on: ubuntu-latest
7 + steps:
8 + - uses: actions/checkout@v1
9 + - name: eslint
10 + uses: reviewdog/action-eslint@v1
11 + with:
12 + github_token: ${{ secrets.GITHUB_TOKEN }}
13 + reporter: github-pr-check
14 + eslint_flags: '.'
15 +
16 shellcheck:
17 name: runner / shellcheck
18 runs-on: ubuntu-latest