Skip to content

ci: add super linter workflow #1

ci: add super linter workflow

ci: add super linter workflow #1

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
statuses: write
jobs:
lint:
name: Super-Linter
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Super-Linter
uses: super-linter/super-linter@v8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: main
VALIDATE_ALL_CODEBASE: false
VALIDATE_JSON: true
VALIDATE_YAML: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_GIT_MERGE_CONFLICT_MARKERS: true
VALIDATE_JSON_PRETTIER: true
VALIDATE_JSONC_PRETTIER: true
VALIDATE_MARKDOWN_PRETTIER: true
VALIDATE_YAML_PRETTIER: true