chore(deps): update dependency eslint to v9 #1522
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |