From cd6042a35e67ddb96862b71e348199470aa24429 Mon Sep 17 00:00:00 2001 From: Joel Clermont Date: Wed, 12 Jun 2024 16:09:56 -0500 Subject: [PATCH] tweak caching in ci --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 880e754..1a7eabe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,8 +68,11 @@ jobs: - name: Run JS test suite run: LARAVEL_BYPASS_ENV_CHECK=1 npm test - - name: Laravel caching - run: docker exec "$PROJECT_NAME-php-fpm" composer run laravel-cache + - name: Cache routes + run: docker exec "$PROJECT_NAME-php-fpm" ./artisan route:cache + + - name: Cache views + run: docker exec "$PROJECT_NAME-php-fpm" ./artisan view:cache - name: Cache Larastan result cache uses: actions/cache@v4