Bump @tiptap/extension-italic from 3.22.2 to 3.22.3 #1866
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: PHP - Larastan | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| - staging | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| - staging | |
| jobs: | |
| phpstan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' # Or your desired PHP version | |
| extensions: mbstring, pdo_mysql # Add necessary extensions | |
| ini-values: post_max_size=256M, upload_max_filesize=256M | |
| coverage: none | |
| - name: Install Composer dependencies | |
| run: composer install --no-interaction --no-progress | |
| - name: Run Larastan | |
| run: ./vendor/bin/phpstan analyse |