Skip to content

Merge branch 'main' into dependabot/npm_and_yarn/prettier-3.9.6 #3212

Merge branch 'main' into dependabot/npm_and_yarn/prettier-3.9.6

Merge branch 'main' into dependabot/npm_and_yarn/prettier-3.9.6 #3212

Workflow file for this run

name: Lint Code Base
on:
pull_request:
branches:
- main
push:
branches-ignore:
- main
jobs:
lint:
name: Lint Code Base
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v7
with:
node-version: 20
cache: npm
- name: Install Dependencies
id: install
run: npm ci
- name: Lint Code Base
id: super-linter
uses: super-linter/super-linter/slim@v8
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TYPESCRIPT_DEFAULT_STYLE: prettier
VALIDATE_TYPESCRIPT_STANDARD: false
VALIDATE_JAVASCRIPT_STANDARD: false
VALIDATE_JSCPD: false
VALIDATE_CHECKOV: false