diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..c08842d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: node:latest + +stages: + - build + +cache: + paths: + - node_modules/ + - dist/ + +install_dependencies: + stage: build + script: + - npm install + artifacts: + paths: + - node_modules/ \ No newline at end of file