From a6fca1e31769d0ef1689efdede0219aea4e1d775 Mon Sep 17 00:00:00 2001 From: Ben Thomson Date: Fri, 14 Aug 2020 08:26:23 +0800 Subject: [PATCH] Disable automatic running of scripts in Composer during tests --- .github/workflows/tests.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index efbd9a2e3..9f0ab376b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -77,7 +77,12 @@ jobs: restore-keys: ${{ runner.os }}-composer- - name: Install Composer dependencies - run: composer install --no-interaction --no-progress --no-suggest + run: composer install --no-interaction --no-progress --no-suggest --no-scripts + + - name: Reset October modules + run: | + git reset --hard HEAD + composer dumpautoload - name: Run post-update Composer scripts run: php artisan package:discover