Fix CI install and prisma generate steps #7
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: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| env: | |
| PUPPETEER_SKIP_DOWNLOAD: "1" | |
| - name: Generate Prisma clients | |
| run: npm run prisma:generate | |
| - name: Lint | |
| run: npx eslint . || true | |
| - name: Build | |
| run: npm run build --if-present | |
| - name: Unit tests | |
| run: npm test --workspaces --if-present |