Skip to content

Bump lint-staged from 15.2.2 to 15.2.9 #503

Bump lint-staged from 15.2.2 to 15.2.9

Bump lint-staged from 15.2.2 to 15.2.9 #503

Workflow file for this run

name: Lint
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache super-linter
uses: actions/cache@v2
with:
path: ~/.cache/super-linter
key: ${{ runner.os }}-super-linter-${{ hashFiles('.github/linters/**') }}
restore-keys: |
${{ runner.os }}-super-linter-
- name: Super-linter
uses: super-linter/super-linter@v6.3.0
env:
VALIDATE_JAVASCRIPT_ES: true
VALIDATE_JSON: true
VALIDATE_JSX: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}