Bumps [github/super-linter](https://github.com/github/super-linter) from 4.9.7 to 4.10.0. - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/main/docs/release-process.md) - [Commits](https://github.com/github/super-linter/compare/v4.9.7...v4.10.0) --- updated-dependencies: - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
529 B
YAML
26 lines
529 B
YAML
name: Lint Code
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint:
|
|
name: Super Linter
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Lint code base
|
|
uses: github/super-linter@v4.10.0
|
|
env:
|
|
VALIDATE_ALL_CODEBASE: false
|
|
VALIDATE_DOCKERFILE_HADOLINT: true
|
|
VALIDATE_BASH: true
|
|
DEFAULT_BRANCH: main
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|