diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..091e106d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +image: node:latest +build: + stage: build + script: + - echo "Build your app" + - yarn + - yarn build + - yarn pack + - echo "DONE!" # This way you know the job id in the next stage + +