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