mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
23 lines
636 B
YAML
23 lines
636 B
YAML
integration:
|
|
image: registry.gitlab.com/openstapps/openstapps/node-builder
|
|
stage: test
|
|
needs: ['build']
|
|
variables:
|
|
DOCKER_DRIVER: overlay2
|
|
WAIT_FOR_SERVICES_TIMEOUT: 1
|
|
services:
|
|
- name: registry.gitlab.com/openstapps/openstapps/database:latest
|
|
alias: elasticsearch
|
|
script:
|
|
- pnpm --filter=@openstapps/backend install
|
|
- pnpm test:integration:backend
|
|
artifacts:
|
|
when: on_failure
|
|
paths:
|
|
- backend/backend/coverage/integration-report-junit.xml
|
|
reports:
|
|
junit:
|
|
- backend/backend/coverage/integration-report-junit.xml
|
|
rules:
|
|
- !reference [.limit_pipelines, rules]
|