Skip to content

Commit

Permalink
ci(shellcheck): add shell script checking (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Jan 11, 2024
1 parent f76b065 commit 88873fd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,17 @@ jobs:
run: |
./run-tests.sh --check-commitlint ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} ${{ github.event.pull_request.head.sha }}
lint-shellcheck:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Runs shell script static analysis
run: |
sudo apt-get install shellcheck
./run-tests.sh --check-shellcheck
lint-dockerfile:
runs-on: ubuntu-20.04
steps:
Expand Down

0 comments on commit 88873fd

Please sign in to comment.