gilde-ci-cd/templates/npm/npm-verify.gitlab-ci.yml
2022-07-20 17:58:05 +02:00

15 lines
262 B
YAML

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