Skip to content

💚 attempt to kill sleep and use build #69

💚 attempt to kill sleep and use build

💚 attempt to kill sleep and use build #69

Workflow file for this run

name: Run Tests
on:
pull_request
jobs:
test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
MYSQL_DATABASE: bio-test
MYSQL_ROOT_PASSWORD: root
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
with:
version: 9
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Dependencies
run: pnpm i
- name: Generate Prisma deps
run: npx prisma generate
- name: Copy .env.test-action to .env.test and .env
run: cp .env.test-action .env.test
- name: Build
env:
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }}
run: |
pnpm run build
node .output/server/index.mjs
- name: Start Server
run: pnpm run build:test:start:bg
- name: Run Migrations
run: pnpm run db:test:reset
- name: Run Vitest
env:
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }}
NODE_ENV: test
run: pnpm run test:coverage
- name: Report Coverage
if: always()
uses: davelosert/vitest-coverage-report-action@v2
with:
json-summary-path: ./server/coverage/coverage-summary.json
json-final-path: ./server/coverage/coverage-final.json
- uses: actions/upload-artifact@v4
with:
name: coverage
path: ./server/coverage/coverage-final.json
file-coverage-mode: all