From 6ac4b8f32cdfac2ebc8a35274311a36bbcaca589 Mon Sep 17 00:00:00 2001 From: Iszuddin Ismail Date: Wed, 13 May 2026 11:50:46 +0800 Subject: [PATCH] fixing test and deploy script --- .gitea/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ce2507c..8b2fb98 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -35,6 +35,12 @@ jobs: cp .env.example .env php artisan key:generate --force + - name: Install NPM dependencies + run: npm ci + + - name: Build frontend assets for tests + run: npm run build + - name: Run tests run: php artisan test --compact