chore(ci): add shellcheck
Some checks failed
commitlint / check-and-test (pull_request) Successful in 28s
Lint Shell files / shellcheck (pull_request) Failing after 1m51s
check-and-test / check-and-test (pull_request) Failing after 1m17s

This commit is contained in:
Markus Pesch 2025-03-31 17:48:20 +02:00
parent 5b19636034
commit 0b45c6adf1
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982

View File

@ -0,0 +1,19 @@
name: Lint Shell files
on:
pull_request:
branches: [ "*" ]
types: [ "opened", "edited" ]
workflow_dispatch: {}
env:
# renovate: datasource=docker depName=koalaman/shellcheck
HELM_VERSION: "v0.10.0"
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- run: apt install shellcheck
- run: find . -type f -name "*.sh" -exec shellcheck -a {} \;