From 6ce9f10645a50428e93ed14843f31e5fc8f4b4ea Mon Sep 17 00:00:00 2001 From: slice Date: Sun, 22 Jul 2018 12:35:15 -0700 Subject: [PATCH] add gitlab ci for testing frontend --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ffc9ede --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,9 @@ +image: node:10-slim + +frontend_test: + before_script: + - cd priv/frontend + - cp config.example.json config.json + - npm ci + script: + - npm test