auth/.gitlab-ci.yml

23 lines
567 B
YAML
Raw Normal View History

2023-01-10 14:28:19 +00:00
image: docker:20.10.22
stages:
- test
##############
# TEST STAGE #
##############
2023-01-11 11:50:04 +00:00
test:
2023-01-10 14:28:19 +00:00
stage: test
image: docker/compose:latest
services:
- docker:dind
script:
- docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci up -d
- sh ci/wait-up.sh
- docker exec -t v3-auth sh -c "npm run test:integration:ci"
coverage: /All files[^|]*\|[^|]*\s+([\d\.]+)/
rules:
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
when: always