From 587acb70a7f62762d7d252d9d2e03ae9bfd2315c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 25 Jul 2022 22:18:55 +0200 Subject: [PATCH] Do a "yarn build" in phpunit tests instead of "yarn watch" Yarn watch starts an server which never ends the process. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 561cffee..dc5dd4df 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -94,7 +94,7 @@ jobs: run: yarn install - name: Build frontend - run: yarn dev + run: yarn watch - name: Create DB run: php bin/console --env test doctrine:database:create --if-not-exists -n