diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..415dd580ca6f82d93af85a888046987b57cdb519 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +image: node:16 + +build-job: + stage: build + script: + - npm install + - npm run build + only: + - merge_requests + +deploy-job: + stage: deploy + script: + - echo "This is where we will put actions to deploy app" + only: + - tags