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

19 lines
316 B
YAML

variables:
FRONTEND_BUILD_DIR: 'dir/'
.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_BUILD_DIR'