Skip to content

Update dependency next-auth to v4.24.8 #4576

Update dependency next-auth to v4.24.8

Update dependency next-auth to v4.24.8 #4576

name: Database check migrations
on:
pull_request:
types: [opened, synchronize]
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/echo-web
NEXT_PUBLIC_SANITY_DATASET: "develop"
FEIDE_CLIENT_ID: ${{ secrets.FEIDE_CLIENT_ID }}
FEIDE_CLIENT_SECRET: ${{ secrets.FEIDE_CLIENT_SECRET }}
NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }}
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
jobs:
check-migration:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15.7
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: echo-web
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: πŸ” Checkout main branch
uses: actions/checkout@v4
with:
ref: main
- name: πŸ“¦ Setup pnpm
uses: pnpm/action-setup@v4
- name: 🐒 Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
cache-dependency-path: ./pnpm-lock.yaml
- name: πŸ“¦ Install dependencies
run: pnpm install --frozen-lockfile
- name: πŸ—οΈ Apply migrations (main)
run: pnpm db:migrate
- name: πŸ” Checkout PR branch
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: πŸ“¦ Install dependencies
run: pnpm install --frozen-lockfile
- name: 🩺 Check migrations (PR Branch)
run: pnpm db:check
- name: 🚒 Apply migrations (PR Branch)
run: pnpm db:migrate