Skip to content

Commit

Permalink
build(ci): add shellcheck lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mroth committed Dec 6, 2021
1 parent 5a771f8 commit b398245
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: reviewdog
on:
push:
branches-ignore:
- 'gh-pages'

jobs:
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: shellcheck
uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-check
path: "./commands/inits/data"
pattern: "*.sh"

0 comments on commit b398245

Please sign in to comment.