Skip to content

deps: update dependency prettier to v3.9.5 #4644

deps: update dependency prettier to v3.9.5

deps: update dependency prettier to v3.9.5 #4644

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24.18.0
cache: "npm"
- name: Enable Corepack
run: npm install corepack@latest && corepack enable
- name: Install dependencies
run: npm ci
- name: Create Prisma client
run: npm run db:generate
- name: Build project
run: npm run build
env:
NEXT_PUBLIC_API_URL: http://localhost:5000
- name: Run ESLint
run: npm run lint
continue-on-error: false