Skip to content

Include Drizzle

Include Drizzle #1

Workflow file for this run

name: Migrate DB
on:
push:
branches:
- main
jobs:
migrate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm test
- run: npm run db:generate
- run: npm run db:migrate