Skip to content

Commit 1a24744

Browse files
committed
- Removed the "Build frontend" job, which runs the "npm run development" command, from the workflow.
- Removed the "composer require" command that installs the "laravel/framework" and "orchestra/testbench" packages from the test job.
1 parent 03d103c commit 1a24744

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ jobs:
4545
- name: Install NPM packages
4646
if: steps.node_modules-cache.outputs.cache-hit != 'true'
4747
run: npm ci
48-
- name: Build frontend
49-
run: npm run development
5048
- name: Install PHP versions
5149
uses: shivammathur/setup-php@v2
5250
with:
@@ -70,7 +68,6 @@ jobs:
7068
key: ${{ runner.OS }}-build-${{ hashFiles('**/composer.lock') }}
7169
- name: Install Laravel Dependencies
7270
run: |
73-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
7471
composer update --${{ matrix.dependency-stability }} --prefer-dist --no-interaction --no-suggest
7572
7673
- name: Update Dependencies with latest stable

0 commit comments

Comments
 (0)