diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..c39a57921686536930bc237d3058a9bed88ebe76 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +image: node:latest +cache: + paths: + - node_modules/ + +pages: + script: + - npm ci + - npm run build + only: + variables: + - $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + environment: production + artifacts: + paths: + - public \ No newline at end of file