Bump vite from 8.0.10 to 8.0.16 in the npm_and_yarn group across 1 directory #71
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| extensions: mbstring, pdo_sqlite, zip | |
| coverage: none | |
| - name: Install Composer dependencies | |
| run: composer install --prefer-dist --no-interaction --no-progress | |
| - name: Copy .env.example | |
| run: cp .env.example .env || true | |
| - name: Set SQLite DB | |
| run: | | |
| touch database/database.sqlite | |
| sed -i 's/^DB_CONNECTION=.*/DB_CONNECTION=sqlite/' .env | |
| sed -i 's/^DB_DATABASE=.*/DB_DATABASE=database\/database.sqlite/' .env | |
| - name: Generate application key | |
| run: php artisan key:generate | |
| - name: Run migrations | |
| run: php artisan migrate --no-interaction --force | |
| - name: Run Pint (code style) | |
| run: vendor/bin/pint --test | |
| - name: Run PHPUnit tests | |
| run: php artisan test | |
| - name: Run PHPStan | |
| run: vendor/bin/phpstan analyse --memory-limit=2G --error-format=github --no-progress --no-ansi |