Skip to content

Update prisma monorepo to v6 (major) #382

Update prisma monorepo to v6 (major)

Update prisma monorepo to v6 (major) #382

Workflow file for this run

name: Basic Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: 'lint and test'
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: ts-starter
ports:
- 5456:5432
options: >-
--health-cmd pg_isready
--health-interval 1s
--health-timeout 5s
--health-retries 30
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- run: corepack enable
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version-file: .tool-versions
cache: pnpm
cache-dependency-path: ./pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: generate prisma client
run: pnpm --filter api-hono postinstall
- name: eslint and biome check
run: pnpm lint
- name: tsc
run: pnpm typecheck
- name: test
run: pnpm test