Skip to content

Fix workspace build script and Prisma log typing #6

Fix workspace build script and Prisma log typing

Fix workspace build script and Prisma log typing #6

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npx eslint . || true
- name: Build
run: npm run build --if-present
- name: Unit tests
run: npm test --workspaces --if-present