Improve screen save state for back by default #3166
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: Tests | |
on: [push,pull_request] | |
jobs: | |
phpunit: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [8.2, 8.1] | |
os: [ubuntu-latest, windows-latest] | |
laravel: [10.*] | |
dependency-version: [prefer-lowest, prefer-stable] | |
include: | |
- laravel: 10.* | |
testbench: 8.* | |
name: P${{ matrix.php }} - ${{ matrix.os }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} | |
steps: | |
- name: Checkout code 🛎️ | |
uses: actions/checkout@v3 | |
- name: Cache dependencies 🔧 | |
uses: actions/[email protected] | |
with: | |
path: ~/.composer/cache/files | |
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
- name: Setup PHP 🔧 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
tools: composer:v2 | |
- name: Install dependencies 🔧 | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | |
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction | |
- name: Execute tests (Unit and Feature tests) via PHPUnit 🧪 | |
run: vendor/bin/phpunit --no-coverage --disable-coverage-ignore | |
dusk: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: PHP version | |
run: php -v | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Make SQLite database | |
run: vendor/orchestra/testbench-dusk/create-sqlite-db | |
- name: Update Dusk Chromedriver | |
run: vendor/bin/dusk-updater detect --auto-update | |
- name: Execute Unit Tests | |
run: vendor/bin/phpunit --testsuite=Browser --no-coverage --disable-coverage-ignore | |
env: | |
RUNNING_IN_CI: true | |
- name: Upload Failed Screenshots | |
uses: actions/[email protected] | |
if: failure() | |
with: | |
name: screenshots | |
path: tests/Browser/screenshots/* |