diff --git a/.gitlab-ci.yaml b/.gitlab-ci.yaml new file mode 100644 index 0000000..3227f39 --- /dev/null +++ b/.gitlab-ci.yaml @@ -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" \ No newline at end of file