Jamstack 2024 chapter #14807
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 ## | |
########################### | |
# | |
# Documentation: https://github.com/github/super-linter/ | |
# | |
# Exception config files are in the .github/linters directory | |
# | |
name: Lint Code Base | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint Code Base | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Set VALIDATE_ALL_CODEBASE variable to false | |
# Only run the full workflow for manual runs or if upgrading the super linter | |
if: | | |
github.event_name != 'workflow_dispatch' && | |
startsWith(github.event.pull_request.title,'Bump github/super-linter') != true | |
run: | | |
echo "VALIDATE_ALL_CODEBASE=false" >> $GITHUB_ENV | |
- name: Lint Code Base | |
uses: github/super-linter/[email protected] | |
env: | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_BASH: true | |
VALIDATE_CSS: true | |
VALIDATE_EDITORCONFIG: true | |
VALIDATE_HTML: true | |
VALIDATE_JAVASCRIPT_ES: true | |
VALIDATE_JSON: true | |
VALIDATE_MARKDOWN: true | |
VALIDATE_PYTHON_PYLINT: true | |
VALIDATE_PYTHON_FLAKE8: true | |
VALIDATE_SQLFLUFF: true | |
VALIDATE_YAML: true |