Files
ghost-docker/.github/workflows/shellcheck.yml
James Loh 6dbf3e4b9a Fix tests not running on renovate branches
no ref

- This prevented renovate auto-merging the digest pin commits
2025-07-14 11:16:22 +10:00

18 lines
346 B
YAML

---
name: "ShellCheck"
on:
pull_request:
push:
branches:
- main
- renovate/*
jobs:
shellcheck:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Run ShellCheck
run: find . -type f -name "*.sh" -exec shellcheck {} +