gilde-ci-cd/templates/npm/npm-build.gitlab-ci.yml
2022-07-08 09:55:50 +02:00

16 lines
274 B
YAML

.npm-build:
image: $NODE_IMAGE
stage: build
before_script:
- >
if [ "$FRONTEND_DIR" != "" ]; then
cd $FRONTEND_DIR
fi
script:
- npm run ci:build
artifacts:
expire_in: 2 weeks
when: always
paths:
- '$FRONTEND_BUID_DIR'