Skip to content

Update config.jsonc #10

Update config.jsonc

Update config.jsonc #10

Workflow file for this run

name: Bash Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Lint Bash scripts
run: |
find . -name "*.sh" -print0 | xargs -0 shellcheck -f gcc | tee shellcheck.log
if grep -q "error:" shellcheck.log; then
exit 1
fi