gilde-ci-cd/templates/npm/npm-verify.gitlab-ci.yml

16 lines
284 B
YAML

.npm-verify:
image: $NODE_IMAGE
stage: verify
interruptible: true
script:
- >
if [ "$FRONTEND_DIR" != "" ]; then
cd $FRONTEND_DIR
fi
- npm run ci:test
artifacts:
expire_in: '7d'
reports:
junit:
- '**/test-reports/**/**.xml'