Skip to content

fix(desktop): corregir schema SQLite — añadir columnas is_read/notes/… #9

fix(desktop): corregir schema SQLite — añadir columnas is_read/notes/…

fix(desktop): corregir schema SQLite — añadir columnas is_read/notes/… #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
name: Lint & Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: TypeScript check
run: pnpm tsc --noEmit
- name: Lint
run: pnpm lint
- name: Unit tests
run: pnpm test -- --passWithNoTests
env:
DATABASE_URL: "postgresql://test:test@localhost:5432/test"
AUTH_SECRET: "test-secret-for-ci"
DESKTOP_MODE: "true"