Skip to content

chore(deps-dev): bump eslint from 9.17.0 to 9.18.0 (#1909) #4186

chore(deps-dev): bump eslint from 9.17.0 to 9.18.0 (#1909)

chore(deps-dev): bump eslint from 9.17.0 to 9.18.0 (#1909) #4186

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 }}