From 63acd89b402654a4a0a32af71180603449794fd6 Mon Sep 17 00:00:00 2001 From: Tobias Schulz Date: Fri, 31 May 2024 12:52:06 +0200 Subject: [PATCH] build assetts on github action --- .github/workflows/laravel.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 87b69ad..da4c8a4 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -30,6 +30,10 @@ jobs: touch database/database.sqlite - name: Migrate database run: php artisan migrate + - name: Build client assets + run: | + npm install + npm run build - name: Execute tests (Unit and Feature tests) via PHPUnit env: DB_CONNECTION: sqlite