ci(global): go through and make sure all related files are working and good to go

This commit is contained in:
2026-04-08 03:04:58 +00:00
parent 546bf65b8b
commit e88d21fa35
13 changed files with 584 additions and 145 deletions
+3 -4
View File
@@ -8,9 +8,6 @@ jobs:
test:
name: Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: api
steps:
- name: Checkout source code
uses: actions/checkout@v4
@@ -23,8 +20,10 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Generate Prisma client
- name: Generate API Prisma client
run: DATABASE_URL="postgresql://dummy:dummy@localhost:5432/dummy" bunx prisma generate
working-directory: api
- name: Run tests
run: bun test --preload ./tests/setup.ts
working-directory: api