.npm-build: image: $NODE_IMAGE stage: build variables: FRONTEND_BUILD_DIR: '**/dist' 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'