chore(deps-dev): bump lodash from 4.17.21 to 4.17.23 #303
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| tags-ignore: | |
| - '*' | |
| jobs: | |
| tests: | |
| name: Tests | |
| runs-on: 'ubuntu-latest' | |
| strategy: | |
| matrix: | |
| php-versions: [ '8.2', '8.3', '8.4' ] | |
| ignore-platform-reqs: [ '--ignore-platform-reqs', '' ] | |
| laravel-versions: [ '^10', '^11', '^12' ] | |
| exclude: | |
| - php-versions: '8.2' | |
| ignore-platform-reqs: '--ignore-platform-reqs' | |
| - php-versions: '8.3' | |
| ignore-platform-reqs: '--ignore-platform-reqs' | |
| - php-versions: '8.4' | |
| ignore-platform-reqs: '--ignore-platform-reqs' | |
| - php-versions: '8.4' | |
| laravel-versions: '^10' | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup PHP with Xdebug | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| coverage: xdebug | |
| extensions: mbstring, intl, fileinfo, sqlite3, pdo_sqlite | |
| - name: Set Laravel Version | |
| run: 'sed -i -e "s/\"laravel\/framework\": \".*\"/\"laravel\/framework\": \"${{ matrix.laravel-versions }}\"/g" composer.json' | |
| - name: Install dependencies with composer | |
| run: composer install --no-ansi --no-interaction --no-progress ${{ matrix.ignore-platform-reqs }} && composer require barryvdh/laravel-debugbar spatie/laravel-typescript-transformer --dev | |
| - name: Run tests with pest | |
| run: vendor/bin/pest --parallel --coverage --min=80 | |
| doc-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v4 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build with VitePress | |
| run: npm run docs:build |