From: Jannik ZANDER Date: Fri, 13 Dec 2019 14:51:26 +0000 (+0100) Subject: Add .gitlab-ci.yml X-Git-Url: https://git.zndr.dk/?a=commitdiff_plain;h=42130fb4ce1a7664ea43b7b8c785ef52d3da1c2e;p=vuepress.git Add .gitlab-ci.yml --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..583a023 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: node:9.11.1 + +pages: + cache: + paths: + - node_modules/ + + script: + - yarn install + - yarn run build + + artifacts: + paths: + - public + + only: + - master \ No newline at end of file