From 70d6c60e8a9e343deb2d7537ce32b3afaf41cad9 Mon Sep 17 00:00:00 2001 From: Artur Gauzer Date: Sat, 4 Nov 2023 20:15:33 +0600 Subject: [PATCH] Fix GitHub Actions --- .github/workflows/laravel.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index b2741e7..34c3c51 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -28,6 +28,10 @@ jobs: run: | mkdir -p database touch database/database.sqlite + - name: Install npm Dependencies + run: npm install + - name: Build frontend + run: npm run build - name: Execute tests (Unit and Feature tests) via PHPUnit env: DB_CONNECTION: sqlite