From 1dffd27390d675f679a03f053c0e88d60cbe7530 Mon Sep 17 00:00:00 2001 From: Julien Nahum Date: Mon, 26 Aug 2024 18:27:16 +0200 Subject: [PATCH] Fix CI --- .github/workflows/laravel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index beeab703..c904152e 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -147,6 +147,7 @@ jobs: run: chmod -R 777 storage bootstrap/cache - name: Run tests (Unit and Feature) + working-directory: ./api run: ./vendor/bin/pest -p env: DB_CONNECTION: ${{ matrix.connection }} @@ -159,10 +160,9 @@ jobs: - name: "Archive log results" if: always() uses: actions/upload-artifact@v3 - working-directory: ./api with: name: log results - path: storage/logs/laravel.log + path: api/storage/logs/laravel.log retention-days: 3 build-nuxt-app: