Update schema.prisma #131
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: CI | |
on: | |
pull_request: | |
branches: ["*"] | |
push: | |
branches: ["main"] | |
merge_group: | |
# You can leverage Vercel Remote Caching with Turbo to speed up your builds | |
# @link https://turborepo.org/docs/core-concepts/remote-caching#remote-caching-on-vercel-builds | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
NEXT_PUBLIC_POSTHOG_PROXY_SECRET: "as2323mk" | |
jobs: | |
build-lint: | |
env: | |
DATABASE_URL: file:./db.sqlite | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup Node 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install deps | |
run: npm ci | |
# Normally, this would be done as part of the turbo pipeline - however since the Expo app doesn't depend on `@acme/db` it doesn't care. | |
# TODO: Free for all to find a better solution here. | |
- name: Generate Prisma Client | |
run: npm run db:generate | |
- name: Build, lint and type-check | |
run: npm run build && npm run lint && npm run type-check | |
env: | |
SKIP_ENV_VALIDATION: true |