build(deps): bump test/bats from 902578d
to 190c7c9
#1185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Documentation: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
name: Lint Code Base | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: super-linter/super-linter@5b638caee6ba65e25e07143887b669a1233847a0 # v6.5.1 | |
env: | |
DEFAULT_BRANCH: main | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_BASH: false | |
VALIDATE_BASH_EXEC: false | |
VALIDATE_CHECKOV: false | |
VALIDATE_JSCPD: false | |
VALIDATE_SHELL_SHFMT: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |