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

15 lines
257 B
YAML

.npm-dependencies:
image: $NODE_IMAGE
stage: dependencies
before_script:
- >
if [ "$FRONTEND_DIR" != "" ]; then
cd $FRONTEND_DIR
fi
script:
- npm ci
artifacts:
expire_in: 1 days
paths:
- "**/node_modules"