add demo .gitlab-ci.yaml file

This commit is contained in:
2026-01-11 07:41:14 +00:00
parent 56c14df540
commit ca4a2f7051

16
.gitlab-ci.yaml Normal file
View File

@@ -0,0 +1,16 @@
stages:
- build
- test
variables:
APP_NAME: "demo-app"
build:
stage: build
script:
- echo "Building $APP_NAME"
test:
stage: test
script:
- echo "Testing $APP_NAME"