Use which #183
Workflow file for this run
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: Test | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
types: [ready_for_review, synchronize, opened] | |
jobs: | |
tests-on-phpunit-10: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [8.1, 8.2, 8.3] | |
laravel: [10.*, 11.*] | |
exclude: | |
- php: 8.1 | |
laravel: 11.* | |
name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, iconv, intl, zip, pdo_sqlite | |
tools: composer:v2 | |
coverage: none | |
- name: Show me the paths | |
run: which node && which npm | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
restore-keys: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer- | |
- name: Install Composer dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update --dev | |
composer update --prefer-stable --no-interaction --no-suggest | |
- name: Touch database | |
run: | |
touch database/database.sqlite | |
- name: Setup dusk/chrome | |
run: vendor/bin/dusk-updater detect --no-interaction | |
- name: Run Browser tests | |
run: vendor/bin/phpunit --testsuite Browser -c phpunit.xml.dist | |
env: | |
RUNNING_IN_CI: true |