Skip to content

deps: update dependency @types/node to v24.13.3 #4634

deps: update dependency @types/node to v24.13.3

deps: update dependency @types/node to v24.13.3 #4634

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@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.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