deps: update turbo monorepo to v2.9.5 #4073
Workflow file for this run
This file contains hidden or 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: 24.14.1 | |
| 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 |