Skip to content

translate tests to new testing framework #11

translate tests to new testing framework

translate tests to new testing framework #11

name: Integration Tests
on:
push:
branches:
- main
tags:
- v[0-9]+.[0-9]+.[0-9]+*
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize', 'ready_for_review']
jobs:
test:
if: '! github.event.pull_request.draft'
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Build
uses: actions/cache@v4
with:
path: ~/.cache/** node_modules/**
key: mise-integration-${{ hashFiles('mise.toml pnpm-lock.yaml') }}
- name: Install Dev Environment
uses: jdx/mise-action@v2
with:
version: 2025.6.4
install: true
cache: true
experimental: true
- name: Run Playwright tests
uses: coactions/setup-xvfb@v1
with:
run: mise run test-integration
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30