Skip to content

Migration Error bugfix for existing DBs #58

Migration Error bugfix for existing DBs

Migration Error bugfix for existing DBs #58

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
lint-check-test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Type checking
run: npm run check
- name: Run tests
run: npm run test
- name: Build application
run: npm run build