chore(deps): bump mongoose from 8.20.2 to 9.0.1 in /shared #663
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
| name: Lint Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - frontend | |
| - backend | |
| - dev | |
| pull_request: | |
| jobs: | |
| lint: | |
| if: github.actor != 'dependabot[bot]' | |
| 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 | |
| cache: 'npm' | |
| - name: Install dependencies (for all workspaces) | |
| run: npm ci | |
| - name: Run ESLint (Frontend) | |
| run: npm run lint --workspace=frontend -- --max-warnings=10 | |
| - name: Run ESLint (Backend) | |
| run: npm run lint --workspace=backend -- --max-warnings=10 |