summaryrefslogtreecommitdiffstats
path: root/.github/workflows/reviewdog.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/reviewdog.yml')
-rw-r--r--.github/workflows/reviewdog.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml
index e40ce46807..c8e7d147f8 100644
--- a/.github/workflows/reviewdog.yml
+++ b/.github/workflows/reviewdog.yml
@@ -1,6 +1,17 @@
name: reviewdog
on: [pull_request]
jobs:
+ golangci-lint:
+ name: runner / golangci-lint
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1
+ - name: golangci-lint
+ uses: reviewdog/action-golangci-lint@v1
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ reporter: github-pr-check
+
eslint:
name: runner / eslint
runs-on: ubuntu-latest
@@ -25,4 +36,4 @@ jobs:
reporter: github-pr-check
path: "."
pattern: "*.sh*"
- exclude: "./.git/*"
+ exclude: "./.git/*" \ No newline at end of file