remove migration drift check

This commit is contained in:
2026-02-25 22:34:16 -06:00
parent 4c21245044
commit 5852bd7819
-38
View File
@@ -5,46 +5,8 @@ on:
types: [created]
jobs:
check-migrations:
name: Check for Missing Migrations
runs-on: ubuntu-latest
services:
shadow-db:
image: postgres:17
env:
POSTGRES_USER: prisma
POSTGRES_PASSWORD: prisma
POSTGRES_DB: shadow
ports:
- 5432:5432
options: >-
--health-cmd="pg_isready -U prisma"
--health-interval=5s
--health-timeout=5s
--health-retries=5
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check for schema drift
run: |
bunx prisma migrate diff \
--from-migrations prisma/migrations \
--to-schema prisma/schema.prisma \
--shadow-database-url "postgresql://prisma:prisma@localhost:5432/shadow" \
--exit-code
env:
DATABASE_URL: "postgresql://prisma:prisma@localhost:5432/shadow"
build:
name: Build
needs: [check-migrations]
runs-on: ubuntu-latest
permissions:
contents: read