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

16 lines
279 B
YAML

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