Skip to content

ci: More lint fixes

ci: More lint fixes #6

Workflow file for this run

---
name: Lint
on:
push:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
# contents permission to clone the repository
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout
uses: actions/checkout@v6
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@v8.5.0
env:
VALIDATE_CHECKOV: false
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
VALIDATE_MARKDOWN_PRETTIER: false
VALIDATE_YAML_PRETTIER: false
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}