chore: Updated Dependencies - #455
Open
peucastro wants to merge 46 commits into
Open
Conversation
Comment on lines
+18
to
+55
| name: Run tests | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup PHP | ||
| uses: shivammathur/setup-php@v2 | ||
| with: | ||
| php-version: ${{ env.PHP_VERSION }} | ||
| extensions: ${{ env.PHP_EXTENSIONS }} | ||
| coverage: none | ||
|
|
||
| - name: Install PHP dependencies | ||
| run: composer install -n --prefer-dist | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| cache: npm | ||
|
|
||
| - name: Install Node dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Docker Layer Caching | ||
| uses: jpribyl/action-docker-layer-caching@v0.1.1 | ||
|
|
||
| - name: Run Sail | ||
| run: | | ||
| ./sail up -d laravel.test | ||
| ./sail npm run dev & | ||
| sleep 5 | ||
|
|
||
| - name: Run tests | ||
| run: ./sail test --parallel | ||
|
|
||
| pint: |
Comment on lines
+56
to
+81
| name: Check PHP code style | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup PHP | ||
| uses: shivammathur/setup-php@v2 | ||
| with: | ||
| php-version: ${{ env.PHP_VERSION }} | ||
| extensions: ${{ env.PHP_EXTENSIONS }} | ||
| coverage: none | ||
|
|
||
| - name: Run composer install | ||
| run: composer install -n --prefer-dist | ||
|
|
||
| - name: Docker Layer Caching | ||
| uses: jpribyl/action-docker-layer-caching@v0.1.1 | ||
|
|
||
| - name: Run Sail | ||
| run: ./sail up -d laravel.test | ||
|
|
||
| - name: Run Pint | ||
| run: ./sail pint -v --test | ||
|
|
||
| prettier: |
Comment on lines
+82
to
+100
| name: Check Typescript code style | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| cache: npm | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Run Prettier | ||
| run: npm run format | ||
|
|
||
| eslint: |
Comment on lines
+101
to
+119
| name: Lint Typescript code | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| cache: npm | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Run Eslint | ||
| run: npm run lint | ||
|
|
||
| vue-tsc: |
Comment on lines
+120
to
+138
| name: Type check Typescript code | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| cache: npm | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Run vue-tsc | ||
| run: npm run type-check | ||
|
|
||
| build: |
Comment on lines
+139
to
+165
| name: Build assets | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup PHP | ||
| uses: shivammathur/setup-php@v2 | ||
| with: | ||
| php-version: ${{ env.PHP_VERSION }} | ||
| extensions: ${{ env.PHP_EXTENSIONS }} | ||
| coverage: none | ||
|
|
||
| - name: Install PHP dependencies | ||
| run: composer install -n --prefer-dist | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| cache: npm | ||
|
|
||
| - name: Install Node dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Build assets | ||
| run: npm run build |
peucastro
marked this pull request as ready for review
July 27, 2026 16:33
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
little bit of this little bit of that