mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 16:52:17 +01:00
* add playwright setup and tests for auth, profile and organization settings * add playwright github action * add sqlite database * fix playwright base url * add mailpit and parallelization * remove additional waitForUrl in fixture * fix tests * remove waitforurl in tests * change playwright github action to only one worker * try promiso all to avoid loading errors * change environment to include http protocol * convert back to simpler structure * add caching of playwright browser binaries * test if playwright in ci works faster with multiple workers * change back to one worker * remove browser binary caching * try using playwright container to speedup browser setup * rollback image changes * add playwright gitignore changes --------- Co-authored-by: Gregor Vostrak <gregorvostrak@Gregors-MacBook-Pro.local>
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
name: Playwright Tests
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
jobs:
|
|
test:
|
|
timeout-minutes: 60
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
mailpit:
|
|
image: 'axllent/mailpit:latest'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.2'
|
|
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
|
|
coverage: none
|
|
|
|
- name: Run composer install
|
|
run: composer install -n --prefer-dist
|
|
|
|
- name: Create SQLite database
|
|
run: touch database/database.sqlite
|
|
|
|
- name: Prepare Laravel Application
|
|
run: |
|
|
cp .env.ci .env
|
|
php artisan key:generate
|
|
php artisan migrate --seed
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build Frontend
|
|
run: npm run build
|
|
|
|
- name: Run Laravel Server
|
|
run: php artisan serve > /dev/null 2>&1 &
|
|
|
|
- name: Install Playwright Browsers
|
|
run: npx playwright install --with-deps
|
|
|
|
- name: Run Playwright tests
|
|
run: npx playwright test
|
|
env:
|
|
PLAYWRIGHT_BASE_URL: 'http://127.0.0.1:8000'
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
if: always()
|
|
with:
|
|
name: playwright-report
|
|
path: playwright-report/
|
|
retention-days: 30
|
|
|