Skip to content

chore(deps-dev): bump lint-staged from 15.3.0 to 15.4.1 #4192

chore(deps-dev): bump lint-staged from 15.3.0 to 15.4.1

chore(deps-dev): bump lint-staged from 15.3.0 to 15.4.1 #4192

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
lint-task:
- eslint
- package-json
- prettier
- typescript
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
- name: Install
run: npm ci
- name: Run linting task
run: npm run lint:${{ matrix.lint-task }}