Files
openstapps/backend/backend/.gitlab-ci.yml

23 lines
607 B
YAML

integration:
image: registry.gitlab.com/openstapps/projectmanagement/builder:v18
stage: test
needs: ['build']
variables:
DOCKER_DRIVER: overlay2
WAIT_FOR_SERVICES_TIMEOUT: 1
services:
- name: registry.gitlab.com/openstapps/database:latest
alias: elasticsearch
script:
- pnpm --filter=@openstapps/backend install
- pnpm test:integration:backend
artifacts:
when: always
paths:
- backend/backend/coverage/integration-report-junit.xml
reports:
junit:
- backend/backend/coverage/integration-report-junit.xml
rules:
- when: on_success