diff --git a/.gitlab-ci/frontend.yml b/.gitlab-ci/frontend.yml index b212a211c..da450d2a3 100644 --- a/.gitlab-ci/frontend.yml +++ b/.gitlab-ci/frontend.yml @@ -35,7 +35,7 @@ default: compile: stage: compile script: - - make -- frontend-build + - make -- compile-frontend IN_CI=true IN_CONTAINER=true artifacts: paths: - ${CI_PROJECT_DIR}/node_modules @@ -50,7 +50,7 @@ compile: lint: stage: lint script: - - make -- frontend-lint + - make -- lint-frontend IN_CI=true IN_CONTAINER=true cache: *frontend-cache test: @@ -58,5 +58,5 @@ test: needs: - compile script: - - make -- frontend-test + - make -- test-frontend IN_CI=true IN_CONTAINER=true cache: *frontend-cache