summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorazul <azul@riseup.net>2018-01-25 00:42:26 -0800
committerAzul <azul@riseup.net>2018-01-25 12:29:18 +0100
commit2088cbec310bb2c5768f4e8a1d424f8468e17c73 (patch)
tree1c6893794aae17197bb7998db5e97d09d5b170ad
parentd60dd2b85df054b847adc7cfc275344022b14db5 (diff)
Add .gitlab-ci.ymlHEADmaster
-rw-r--r--.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..fc861e5
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,12 @@
+image: ruby:latest
+
+# This folder is cached between builds
+# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
+cache:
+ paths:
+ - node_modules/
+
+test:
+ script:
+ - npm install
+ - npm test \ No newline at end of file