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

16 lines
278 B
YAML

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