use brew install --formula
#39519
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
--- | |
########################### | |
########################### | |
## Linter GitHub Actions ## | |
########################### | |
########################### | |
name: 🚨 GitHub Super Linter | |
# | |
# Documentation: | |
# https://github.com/github/super-linter | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
branches: | |
- "long_lived/**" | |
- main | |
- "release/**" | |
release: | |
types: [published] | |
pull_request: | |
branches: | |
- "**" | |
concurrency: | |
group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }} | |
cancel-in-progress: true | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
build: | |
# Name the Job | |
name: Lint Code Base | |
# Set the agent to run on | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
################## | |
# Load all steps # | |
################## | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
################################ | |
# Run Linter against code base # | |
################################ | |
- name: Lint Code Base | |
uses: github/super-linter@v6 | |
# uses: docker://github/super-linter:v3.10.2 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
DEFAULT_BRANCH: main | |
LINTER_RULES_PATH: . | |
MARKDOWN_CONFIG_FILE: .markdown-lint.yml | |
VALIDATE_BASH: true | |
VALIDATE_CSS: true | |
VALIDATE_DOCKER: true | |
VALIDATE_GO: true | |
VALIDATE_HTML: true | |
VALIDATE_JAVASCRIPT_ES: true | |
VALIDATE_JSON: true | |
VALIDATE_MD: true | |
VALIDATE_POWERSHELL: true | |
VALIDATE_TYPESCRIPT_ES: true | |
VALIDATE_YAML: true | |
DISABLE_ERRORS: false | |
PYTHONPATH: ${{ github.workspace }}:$PYTHONPATH | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FILTER_REGEX_EXCLUDE: .*github/ISSUE_TEMPLATE/config.yml | |
# ACTIONS_RUNNER_DEBUG: true |