summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJames Mills <1290234+prologic@users.noreply.github.com>2020-01-25 11:55:46 +1000
committerGitHub <noreply@github.com>2020-01-25 11:55:46 +1000
commitcfebda600cb16848a2c58360837f239298e3509e (patch)
treeb0db523acda2198457587282dd3f2cafdc435126 /.github
parent6672a3e4ce50c8081feb466ec45670fb61dc276d (diff)
Added ReviewDOg CI checks for JavaScript (#7828)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/reviewdog.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml
index 729a183970..e40ce46807 100644
--- a/.github/workflows/reviewdog.yml
+++ b/.github/workflows/reviewdog.yml
@@ -1,6 +1,18 @@
name: reviewdog
on: [pull_request]
jobs:
+ eslint:
+ name: runner / eslint
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1
+ - name: eslint
+ uses: reviewdog/action-eslint@v1
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ reporter: github-pr-check
+ eslint_flags: '.'
+
shellcheck:
name: runner / shellcheck
runs-on: ubuntu-latest