Skip to content

Bump super-linter/super-linter from 8.3.0 to 8.3.2 in the actions-minor group #219

Bump super-linter/super-linter from 8.3.0 to 8.3.2 in the actions-minor group

Bump super-linter/super-linter from 8.3.0 to 8.3.2 in the actions-minor group #219

Workflow file for this run

name: Lint Codebase
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
packages: read
statuses: write
jobs:
lint:
name: Lint Codebase
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: install
run: npm ci
- name: Lint Codebase
id: super-linter
uses: super-linter/super-linter/slim@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2
env:
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: dist/**/*
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: true
VALIDATE_JSCPD: false
VALIDATE_TYPESCRIPT_ES: false # handled in CI
VALIDATE_BIOME_FORMAT: false
VALIDATE_BIOME_LINT: false