Bump @alpinejs/focus from 3.14.4 to 3.14.5 #9
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: Quality | |
on: [ push, pull_request ] | |
jobs: | |
security-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: The PHP Security Checker | |
uses: symfonycorp/security-checker-action@v5 | |
larastan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: mbstring, dom, fileinfo | |
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: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install Composer Dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader | |
- name: Prepare Laravel Environment | |
run: | | |
php -r "file_exists('.env') || copy('.env.ci', '.env');" | |
php artisan key:generate | |
php artisan optimize | |
- name: Execute Code Static Analysis with Larastan | |
run: ./vendor/bin/phpstan analyse -c ./phpstan.neon --no-progress --error-format=github | |
pint-fixer: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: mbstring, dom, fileinfo | |
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: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install Composer Dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader | |
- name: Prepare Laravel Environment | |
run: | | |
php -r "file_exists('.env') || copy('.env.ci', '.env');" | |
php artisan key:generate | |
php artisan optimize | |
- name: Run Pint Code Style Fixer | |
run: ./vendor/bin/pint | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Pint PHP Style Fixes [no ci] | |
commit_user_name: Pint Bot | |
skip_fetch: true | |
file_pattern: '*.php' |