SEO improvement #4580
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: 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 |