Bump vite from 7.3.5 to 8.1.1 #86
Workflow file for this run
This file contains hidden or 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: Pull Request | CI Larastan | |
| on: pull_request | |
| jobs: | |
| larastan: | |
| runs-on: ubuntu-latest | |
| name: pull-request | ci larastan | |
| env: | |
| PHP_VERSION: 8.5 | |
| NODE_VERSION: 24 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup PHP Environment | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ env.PHP_VERSION }} | |
| extensions: dom, curl, fileinfo, pgsql, pdo_pgsql, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick | |
| - name: Prepare the .env file | |
| run: cp .env.testing.ci .env | |
| - name: Prepare the .env file | |
| run: cp -f .env.testing.ci .env.testing | |
| - name: Configure Composer Credentials | |
| run: | | |
| composer config http-basic.composer.fluxui.dev ${{ secrets.FLUXUI_USERNAME }} ${{ secrets.FLUXUI_LICENSE_KEY }} | |
| composer config http-basic.nova.laravel.com ${{ secrets.NOVA_USERNAME }} ${{ secrets.NOVA_LICENSE_KEY }} | |
| - name: Cache Composer Dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.composer/cache/files | |
| ~/.composer/cache/repo | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-composer- | |
| - name: Install Composer Dependencies | |
| run: composer install --no-progress --prefer-dist --no-interaction --optimize-autoloader | |
| - name: Publish Laravel assets | |
| run: php artisan vendor:publish --tag=laravel-assets --ansi --force | |
| - name: Publish Laravel Nova assets | |
| run: php artisan vendor:publish --tag=nova-assets --ansi --force | |
| - name: Execute static analysis | |
| run: ./vendor/bin/phpstan analyse | |
| - name: Store Log Artifacts | |
| if: failure() | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: Store report artifacts | |
| path: ./storage/logs | |
| if-no-files-found: ignore |