Skip to content

feat: add export-db command and automatic migration backup/rollback #11

feat: add export-db command and automatic migration backup/rollback

feat: add export-db command and automatic migration backup/rollback #11

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Type check
run: bunx tsc --noEmit
- name: Lint
run: bun run lint
- name: Test
run: bun test