From d9091172fa0f6d98bbd2c78c2d2dcaa59656d763 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Mon, 3 Feb 2020 00:02:42 +0100
Subject: [PATCH] CI: Added CI file to build and post site.

---
 .gitlab-ci.yml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..ae005fc
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,16 @@
+image: node:latest
+
+cache:
+  paths:
+  - vendor
+
+pages:
+  script:
+  - npm install --global gatsby-cli
+  - npm install
+  - gatsby build
+  artifacts:
+    paths:
+    - public
+  only:
+  - master
-- 
GitLab