feat: custom generator #1060
This file contains 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: E2E, Lint & Unit tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
jobs: | |
start: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Enable corepack | |
run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Cache playwright dependencies | |
id: cache-playwright | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright | |
key: ${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- name: Start docker-compose | |
run: docker compose up -d | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build required packages | |
run: pnpm turbo run build --filter=@premieroctet/next-admin-json-schema --filter=@premieroctet/next-admin-generator-prisma | |
- name: Generate Prisma client | |
run: cd apps/example && pnpm prisma generate | |
- name: Run linter | |
run: pnpm lint | |
- name: Run typecheck | |
run: pnpm typecheck | |
- name: Install playwright dependencies | |
if: steps.cache-playwright.outputs.cache-hit != 'true' | |
run: npx playwright install --with-deps | |
- name: Fill database | |
run: pnpm database | |
- name: Build packages | |
run: pnpm build:example | |
- name: Start server | |
run: pnpm start:example & | |
- name: Run tests | |
run: | | |
pnpm test | |
pnpm turbo test:e2e | |
cd apps/example && pnpm prisma db seed && cd - | |
BASE_URL=http://localhost:3000/pagerouter/admin pnpm test:e2e | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |