Skip to content

🧪 alright lets see what happens here #60

🧪 alright lets see what happens here

🧪 alright lets see what happens here #60

Workflow file for this run

name: Run Tests
on:
pull_request
env:
DEVRUN: true
jobs:
test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
# The MySQL docker container requires these environment variables to be set
# so we can create and migrate the test database.
# See: https://hub.docker.com/_/mysql
MYSQL_DATABASE: bio-test
MYSQL_ROOT_PASSWORD: root
ports:
# Opens port 3306 on service container and host
# https://docs.github.com/en/actions/using-containerized-services/about-service-containers
- 3306:3306
# Before continuing, verify the mysql container is reachable from the ubuntu host
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
run: cp .env.test-action .env.test
- name: Build
env:
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }}
run: pnpm run build
- name: Start Server
run: pnpm run dev:test &
- name: Run Migrations
run: pnpm run db:test:reset
- name: Sleep for 10 seconds
run: sleep 10
- name: Run Vitest
env:
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }}
NODE_ENV: test
run: pnpm run test:dev: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