user/.gitlab-ci.yml

52 lines
1.5 KiB
YAML
Raw Normal View History

2023-01-09 14:08:45 +00:00
image: docker:20.10.22
stages:
2023-01-10 10:24:42 +00:00
- test
2023-01-09 14:08:45 +00:00
##############
# TEST STAGE #
##############
2023-01-10 10:31:31 +00:00
# unit-test:
# stage: test
# image: node:18-alpine3.16
# script:
# - npm install
# - npm run test:unit
# rules:
# - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
# when: always
2023-01-10 09:29:04 +00:00
2023-01-10 09:39:36 +00:00
integration-test:
2023-01-10 10:24:42 +00:00
stage: test
2023-01-10 09:39:36 +00:00
image: docker/compose:latest
variables:
DOCKER_TLS_CERTDIR: ""
services:
- docker:dind
script:
- docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci up -d
- sleep 30
2023-01-10 09:48:15 +00:00
- docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci logs
2023-01-10 10:24:42 +00:00
- docker exec -t v3-user sh -c "npm run test:integration:ci"
2023-01-10 09:39:36 +00:00
rules:
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
when: always
2023-01-10 09:29:04 +00:00
# test-api-dev:
# stage: test
# image: docker/compose:latest
# variables:
# DOCKER_TLS_CERTDIR: ""
# services:
# - docker:dind
# script:
# - docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci up -d
# - sleep 30
# - docker exec -t v3-user sh -c "npm run test:integration"
# - docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci logs
# - docker exec -t v3-user sh -c "npm run test:integration"
# rules:
# - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
# when: always