Skip to content

test(ci): Test Prisma migrations (#160) #2

test(ci): Test Prisma migrations (#160)

test(ci): Test Prisma migrations (#160) #2

name: Deploy migrations
on:
push:
paths:
# Only run this workflow when migrations are updated
- prisma/migrations/**
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- name: Install dependencies
run: npm install
- name: Apply all pending migrations to the database
run: npx prisma migrate deploy
env:
POSTGRES_PRISMA_URL: ${{ secrets.PRODUCTION_POSTGRES_PRISMA_URL }}
POSTGRES_URL_NON_POOLING: ${{ secrets.PRODUCTION_POSTGRES_URL_NON_POOLING }}