mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-02-02 23:12:44 +00:00
refactor: remove deprecated "jetifier" refactor: base migration to Angular v18 fix: angular warning refactor: update capacitor to v6 refactor: update ngx-markdown to v18 refactor: update to ionic v8 refactor: remove deprecated @ionic-native/core (replaced by @awesome-cordova-plugins/core) fix: build fix: test feat: temporarily use external node image in ci feat: update to node 22 refactor: rebase fix: prettier depencencies ci: update android commandline tools fix: prettier package type ci: let pnpm handle build dependencies refactor: revert to pnpm 8, angular 17
23 lines
644 B
YAML
23 lines
644 B
YAML
integration:
|
|
image: registry.gitlab.com/openstapps/openstapps/node-builder:node-22
|
|
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]
|