diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..964799100f5f091c3cdd67e1523bdf8e6e30bfc1 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,21 @@ +stages: +- build +- quality + +- documentation + +variables: + +default: + image: node:lts-slim + cache: + paths: + - node_modules + +build: + stage: build + before_script: npm ci + script: npm run build + artifacts: + paths: + - dist \ No newline at end of file