Skip to content

chore(deps): update dependency eslint to v9 #1524

chore(deps): update dependency eslint to v9

chore(deps): update dependency eslint to v9 #1524

Workflow file for this run

# SPDX-FileCopyrightText: 2023 HH Partners
#
# SPDX-License-Identifier: MIT
name: ESLint
on:
push:
branches:
- main
pull_request:
# The branches below must be a subset of the branches above
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Run eslint scanning
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.13.1
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Create Prisma client
run: npm run db:generate
- name: Run ESLint
run: npm run lint
continue-on-error: false