Skip to content

Twitch authentication #6

Twitch authentication

Twitch authentication #6

name: Database migration (staging)
on:
pull_request:
branches:
- master
paths:
- 'server/database/migrations/**'
jobs:
migration:
runs-on: ubuntu-latest
environment: staging
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.17.0
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run database migration
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
run: npm run db:migrate