diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ef1319e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +stages: + - prep + - build + - pack + +install deps: + stage: prep + script: yarn install + +build: + stage: build + script: npm run build + +create zip: + stage: pack + script: npm run build-zip \ No newline at end of file