mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-21 09:03:02 +00:00
23 lines
607 B
YAML
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
|