Skip to content

only run on main push #19

only run on main push

only run on main push #19

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@v4
with:
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v7
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_MARKDOWN_PRETTIER: true
VALIDATE_GITLEAKS: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_YAML: true
VALIDATE_YAML_PRETTIER: true
FIX_YAML_PRETTIER: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}