This repository was archived by the owner on Feb 12, 2026. It is now read-only.
chore(deps): bump @google/genai from 0.10.0 to 1.34.0 #66
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
| # Lint & Typecheck workflow for monorepo (2025 best practices) | |
| name: Lint & Typecheck | |
| on: | |
| pull_request: | |
| branches: [main, develop] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: ESLint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - # actions/checkout@v4.2.2 | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - # actions/setup-node@v4.4.0 | |
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| cache-dependency-path: '**/package-lock.json' | |
| - run: npm ci --workspaces --include-workspace-root | |
| - run: npm run db:generate | |
| - run: npm run lint | |
| format: | |
| name: Prettier Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - # actions/checkout@v4.2.2 | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - # actions/setup-node@v4.4.0 | |
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| cache-dependency-path: '**/package-lock.json' | |
| - run: npm ci --workspaces --include-workspace-root | |
| - run: npm run format:check | |
| typecheck: | |
| name: TS Typecheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - # actions/checkout@v4.2.2 | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - # actions/setup-node@v4.4.0 | |
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| cache-dependency-path: '**/package-lock.json' | |
| - run: npm ci --workspaces --include-workspace-root | |
| - run: npm run db:generate | |
| - run: npm run build | |
| - run: npm run typecheck |