Skip to content

build(deps): bump super-linter/super-linter from 8.2.1 to 8.3.0 in the actions-minor group #813

build(deps): bump super-linter/super-linter from 8.2.1 to 8.3.0 in the actions-minor group

build(deps): bump super-linter/super-linter from 8.2.1 to 8.3.0 in the actions-minor group #813

Workflow file for this run

name: Lint Codebase
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
packages: read
statuses: write # To report GitHub Actions status checks
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: npm-ci
run: npm ci --no-fund
- name: Lint Typescript
id: biome
run: npm run check
- name: Lint Codebase
id: super-linter
uses: super-linter/super-linter@502f4fe48a81a392756e173e39a861f8c8efe056 # v8.3.0
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FILTER_REGEX_EXCLUDE: (dist/**/*)|(__tests__/fixtures/**/*)
FIX_TYPESCRIPT_PRETTIER: false # Using biome
FIX_JAVASCRIPT_PRETTIER: false # Using biome
VALIDATE_ALL_CODEBASE: true
VALIDATE_JAVASCRIPT_STANDARD: false # Using biome
VALIDATE_JAVASCRIPT_PRETTIER: false # Using biome
VALIDATE_JSON_PRETTIER: false # Using biome
VALIDATE_JSCPD: false # Using biome
VALIDATE_TERRAFORM_FMT: false # Terraform modules here aren't needed (They're for testing only)
VALIDATE_TERRAFORM_TFLINT: false # Terraform modules here aren't needed (They're for testing only)
VALIDATE_TYPESCRIPT_STANDARD: false # Using biome
VALIDATE_TYPESCRIPT_ES: false # Using biome
VALIDATE_TYPESCRIPT_PRETTIER: false # Using biome
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false # This is new. Will investigate this further