Skip to content

Commit

Permalink
Merge pull request #4 from hazcod/feat/shellcheck
Browse files Browse the repository at this point in the history
chore(cicd): add shellcheck pr check
  • Loading branch information
hazcod authored Oct 2, 2019
2 parents dde2da1 + 30fa1df commit 204bfc8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: shellcheck
on: [pull_request]
jobs:
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: shellcheck
uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: CI/CD

0 comments on commit 204bfc8

Please sign in to comment.