feat: add AI ATS suggestion to LaTeX resume workflow #26
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
| name: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| typecheck-client: | |
| name: Typecheck Client | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: "npm" | |
| cache-dependency-path: client/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| working-directory: client | |
| - name: Run TypeScript check | |
| run: npx tsc --noEmit | |
| working-directory: client | |
| typecheck-server: | |
| name: Typecheck Server | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: "npm" | |
| cache-dependency-path: server/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| working-directory: server | |
| - name: Generate Prisma client | |
| run: npx prisma generate --schema=src/database/prisma/schema | |
| working-directory: server | |
| - name: Run TypeScript check | |
| run: npx tsc --noEmit | |
| working-directory: server | |
| lint-client: | |
| name: Lint Client | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: "npm" | |
| cache-dependency-path: client/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| working-directory: client | |
| - name: Run ESLint | |
| run: npx eslint . --ext .ts,.tsx | |
| working-directory: client |