ci(frontend): fix frontend pipeline targets

This commit is contained in:
Sarah Vaupel 2024-09-12 00:54:05 +02:00
parent 2d1cd421c7
commit 56c26cdc04

View File

@ -35,7 +35,7 @@ default:
compile: compile:
stage: compile stage: compile
script: script:
- make -- frontend-build - make -- compile-frontend IN_CI=true IN_CONTAINER=true
artifacts: artifacts:
paths: paths:
- ${CI_PROJECT_DIR}/node_modules - ${CI_PROJECT_DIR}/node_modules
@ -50,7 +50,7 @@ compile:
lint: lint:
stage: lint stage: lint
script: script:
- make -- frontend-lint - make -- lint-frontend IN_CI=true IN_CONTAINER=true
cache: *frontend-cache cache: *frontend-cache
test: test:
@ -58,5 +58,5 @@ test:
needs: needs:
- compile - compile
script: script:
- make -- frontend-test - make -- test-frontend IN_CI=true IN_CONTAINER=true
cache: *frontend-cache cache: *frontend-cache