Skip to content

Bump super-linter/super-linter from 6.7.0 to 7.1.0 #350

Bump super-linter/super-linter from 6.7.0 to 7.1.0

Bump super-linter/super-linter from 6.7.0 to 7.1.0 #350

Workflow file for this run

name: Lint Codebase
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
lint:
name: Lint Codebase
runs-on: ubuntu-latest
permissions:
packages: read
statuses: write
steps:
- name: Setup Bolt
uses: koalalab-inc/bolt@d27f00745e656371eaef26cc9cd382df05677521 # koalalab-inc/bolt@v1.3.0 | main
- name: Checkout
id: checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # actions/checkout@v4 | 1567,v4.1.7
with:
fetch-depth: 0
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # actions/setup-node@v4 | v4.0.3
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@b92721f792f381cedc002ecdbb9847a15ece5bb8 # super-linter/super-linter/slim@v6
env:
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: dist/**/*
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JAVASCRIPT_DEFAULT_STYLE: prettier
VALIDATE_ALL_CODEBASE: true
VALIDATE_MARKDOWN: false
VALIDATE_JSCPD: false