Skip to content

Fix tests to match Swiss-style design text changes #15

Fix tests to match Swiss-style design text changes

Fix tests to match Swiss-style design text changes #15

Workflow file for this run

name: Tests
on:
push:
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
- name: Setup PHP 8.4
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
- name: Install Composer dependencies
run: |
composer install --no-interaction --prefer-dist --optimize-autoloader
cp .env.example .env && php artisan key:generate
- name: Install npm dependencies and build assets
run: |
bun install
bun run build
npx playwright install
- run: php artisan test