survey-webapp/.gitlab-ci.yml
2025-04-23 17:13:11 +00:00

25 lines
448 B
YAML

stages:
- .pre
- build
- test
- deploy
variables:
GIT_SUBMODULE_STRATEGY: recursive
PUBLISH_DIR: BackendPublish
top-level-job:
stage: .pre
image: alpine:latest
script:
- echo "Starting pipeline"
include:
- local: '/SurveyBackend/backend.gitlab-ci.yml'
rules:
- changes:
- 'SurveyBackend/*'
- local: '/SurveyFrontend/frontend.gitlab-ci.yml'
rules:
- changes:
- 'SurveyFrontend/*'