Copy this in from docs
This commit is contained in:
parent
8ee7652aad
commit
1810d6214d
1 changed files with 43 additions and 0 deletions
43
.github/workflows/dusk.yml
vendored
Normal file
43
.github/workflows/dusk.yml
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
name: Dusk
|
||||
on: [push]
|
||||
jobs:
|
||||
|
||||
dusk-php:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
APP_URL: "http://127.0.0.1:8000"
|
||||
DB_USERNAME: root
|
||||
DB_PASSWORD: root
|
||||
MAIL_MAILER: log
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Prepare The Environment
|
||||
run: cp .env.example .env
|
||||
- name: Create Database
|
||||
run: |
|
||||
sudo systemctl start mysql
|
||||
mysql --user="root" --password="root" -e "CREATE DATABASE \`panel\` character set UTF8mb4 collate utf8mb4_bin;"
|
||||
- name: Install Composer Dependencies
|
||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
||||
- name: Generate Application Key
|
||||
run: php artisan key:generate
|
||||
- name: Upgrade Chrome Driver
|
||||
run: php artisan dusk:chrome-driver --detect
|
||||
- name: Start Chrome Driver
|
||||
run: ./vendor/laravel/dusk/bin/chromedriver-linux &
|
||||
- name: Run Laravel Server
|
||||
run: php artisan serve --no-reload &
|
||||
- name: Run Dusk Tests
|
||||
run: php artisan dusk
|
||||
- name: Upload Screenshots
|
||||
if: failure()
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: screenshots
|
||||
path: tests/Browser/screenshots
|
||||
- name: Upload Console Logs
|
||||
if: failure()
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: console
|
||||
path: tests/Browser/console
|
Loading…
Reference in a new issue