[6.x] Add Cypress test - New Actions Rendering (#1672) #875
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: Code style | |
on: | |
push: | |
branches: | |
- "**" | |
paths-ignore: | |
- "art/**" | |
- "README.md" | |
pull_request: | |
types: [ready_for_review, synchronize, opened] | |
paths-ignore: | |
- "art/**" | |
- "README.md" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ 8.2 ] | |
laravel: [ 11.* ] | |
exclude: | |
- php: 8.1 | |
laravel: 11.* | |
dependency-version: [ prefer-stable ] | |
name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }} | |
if: github.ref != 'refs/heads/todo-tests' | |
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, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv | |
tools: composer:v2 | |
coverage: none | |
- 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: $(composer config cache-files-dir) | |
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
- name: Install Composer dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update | |
composer install | |
- name: Pint | |
run: composer test:pint | |
- name: LaraDumps Check debug | |
run: composer ds:check |