diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d853357 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +build: + image: node:slim + stage: build + cache: + key: ${CI_COMMIT_REF_SLUG} + paths: + - .npm + - .cache + before_script: + - npm ci --cache .npm --prefer-offline + script: + - npm run build + artifacts: + paths: + - public