4e0799f9d9
Agent-Logs-Url: https://github.com/HorizonStackSoftware/optima/sessions/8b3e4db9-a1bf-44c4-98fc-3304890cb3f4 Co-authored-by: HoloPanio <30759238+HoloPanio@users.noreply.github.com>
30 lines
628 B
YAML
30 lines
628 B
YAML
name: API - Tests
|
|
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: "1.3.6"
|
|
|
|
- name: Install dependencies
|
|
run: bun install
|
|
|
|
- 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
|