From 1975ca77393efa7426b095a0fc33c7d8f7882150 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 28 Sep 2022 08:59:00 +0200 Subject: [PATCH] Make sure yarn install is run for E2E tests Signed-off-by: Thomas Citharel --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index adee20efe..d3ac84a96 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -156,7 +156,7 @@ e2e: - mix ecto.create - mix ecto.migrate - mix run priv/repo/e2e.seed.exs - - cd js && yarn run build && npx playwright install && cd ../ + - cd js && yarn install && yarn run build && npx playwright install && cd ../ - mix phx.digest script: - mix phx.server &