Skip to content

feat(server): run database migrations on startup #4

feat(server): run database migrations on startup

feat(server): run database migrations on startup #4

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
check:
name: Lint & Types
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint & format (Biome)
run: npm run check
- name: TypeScript
run: npm run check-types