🧪 alright lets see what happens here #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Build | |
env: | |
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }} | |
run: pnpm run build | |
- name: Rename .env.test-action to .env.test | |
run: mv .env.test-action .env.test | |
- name: Run Migrations | |
run: pnpm run db:test:reset | |
- uses: JarvusInnovations/background-action@v1 | |
with: | |
run: pnpm run dev:test | |
wait-on: http://localhost:3000 | |
- 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 |