This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
🤖️ GH Actions (deps): Bump docker/setup-buildx-action from a946f06b5ddbde456d0115dc585e8dc3c7a0c3e0 to 988b5a0280414f521da01fcc63a27aeeb4b104db #229
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: Lint Code Base | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
branches: [dev, main, release] | |
pull_request: | |
branches: [dev, main, release] | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
build: | |
# Name the Job | |
name: Lint Code Base | |
# Set the agent to run on | |
runs-on: ubuntu-latest | |
################## | |
# Load all steps # | |
################## | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
################################ | |
# Run Linter against code base # | |
################################ | |
# - name: Lint Code Base | |
# uses: github/super-linter@v4 | |
# env: | |
# VALIDATE_ALL_CODEBASE: false | |
# DEFAULT_BRANCH: prod | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
################################ | |
# Run Linter against code base # | |
################################ | |
- name: Lint Code Base | |
uses: docker://ghcr.io/github/super-linter:slim-v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
LOG_LEVEL: WARN | |
FILTER_REGEX_EXCLUDE: '.*(\.github|\.vscode).*' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |