From ece91a9a7e3f1a49b426595eed4e1a1599db90e0 Mon Sep 17 00:00:00 2001 From: Matthew Ess Date: Mon, 23 Jul 2018 02:55:29 +0000 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..95de64a --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: node + +before_script: + - npm install + +cache: + paths: + - node_modules/ + +pages: + script: + - npm run generate + artifacts: + paths: + - public + only: + - master