mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-01 19:25:32 +01:00
Bumps [ludeeus/action-shellcheck](https://github.com/ludeeus/action-shellcheck) from 0.5.0 to 1.0.0. - [Release notes](https://github.com/ludeeus/action-shellcheck/releases) - [Commits](https://github.com/ludeeus/action-shellcheck/compare/0.5.0...d586102c117f97e63d7e3b56629d269efc9a7c60) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: Lint
|
|
|
|
env:
|
|
HADOLINT_VERSION: v1.17.2
|
|
SHELLCHECK_OPTS: -e SC1008 -s bash
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ["master"]
|
|
push:
|
|
branches: ["master"]
|
|
|
|
jobs:
|
|
hadolint:
|
|
runs-on: ubuntu-latest
|
|
name: hadolint
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run linter
|
|
id: changed_files
|
|
run: |
|
|
shopt -s globstar
|
|
for dockerfile in **/Dockerfile; do
|
|
echo "Linting: $dockerfile"
|
|
docker run --rm -i \
|
|
-v $(pwd)/.hadolint.yaml:/.hadolint.yaml:ro \
|
|
hadolint/hadolint:${{ env.HADOLINT_VERSION }} < "$dockerfile"
|
|
done
|
|
|
|
jq:
|
|
runs-on: ubuntu-latest
|
|
name: JQ
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run linter
|
|
run: |
|
|
shopt -s globstar
|
|
cat **/*.json | jq '.'
|
|
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
name: ShellCheck
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run linter
|
|
uses: ludeeus/action-shellcheck@1.0.0 |