Skip to content

Disable fail-fast in Prek workflow #789

Disable fail-fast in Prek workflow

Disable fail-fast in Prek workflow #789

Workflow file for this run

name: 🧪 Code Quality - Super-Linter
on:
pull_request:
push:
branches:
- main
permissions: {}
jobs:
build:
name: Super-Linter Validation
runs-on: ubuntu-latest
permissions:
# contents permission to clone the repository
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
persist-credentials: false
- name: Super-Linter
uses: super-linter/super-linter@4ce20838b8ab83717e78138c5b3a1407148e0918 # v8.7.0
env:
ERROR_ON_MISSING_EXEC_BIT: true
VALIDATE_EDITORCONFIG: true
VALIDATE_JSON: true
VALIDATE_MARKDOWN: true
VALIDATE_YAML: true
VALIDATE_BIOME_LINT: true
VALIDATE_BIOME_FORMAT: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}