Skip to content

feat(api): setup vitest #5

feat(api): setup vitest

feat(api): setup vitest #5

Workflow file for this run

name: api test
on:
push:
branches:
- main
paths:
- 'apps/api/**'
- 'packages/types/**'
pull_request:
branches:
- main
paths:
- 'apps/api/**'
- 'packages/types/**'
permissions:
contents: read
pull-requests: read
jobs:
api-test:
runs-on: ubuntu-latest
timeout-minutes: 10
env:
SUPABASE_URL: http://127.0.0.1:54321
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
SUPABASE_SERVICE_KEY: ${{ secrets.SUPABASE_SERVICE_KEY }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: latest
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '21'
cache: 'pnpm'
- name: Install dependencies
run: pnpm -F api install
- name: Start Supabase
run: pnpx supabase db start
- name: Run tests
run: pnpm -F api test