Skip to content

ci(lint.yaml): add GitHub Actions workflow for code linting using Sup… #1

ci(lint.yaml): add GitHub Actions workflow for code linting using Sup…

ci(lint.yaml): add GitHub Actions workflow for code linting using Sup… #1

Workflow file for this run

name: Super-Linter
on: [push, pull_request, workflow_dispatch]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_MARKDOWN_PRETTIER: true
VALIDATE_GITLEAKS: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_LUA: true
VALIDATE_YAML: true
VALIDATE_YAML_PRETTIER: true
# FIX_PYTHON_RUFF: true
# VALIDATE_PYTHON_RUFF: true
# FIX_TYPESCRIPT_ES: true
# VALIDATE_TYPESCRIPT_ES: true
# VALIDATE_DOCKERFILE_HADOLINT: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}