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:
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