From 5e981bca19ace2a7704f267175b6aa368e63bda0 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Sat, 18 Feb 2017 17:55:13 -0600 Subject: Initial Setup (#1) * Add git ignore * Add eslint config * Add dummy project files * Add jsdoc config * Add docker files * Add changelog, contributing and readme * Add travis files * Add Paw helper * Add travis test docker compose file * Name the ci service appropriately --- test/docker-compose-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/docker-compose-ci.yml (limited to 'test/docker-compose-ci.yml') diff --git a/test/docker-compose-ci.yml b/test/docker-compose-ci.yml new file mode 100644 index 0000000..b363eed --- /dev/null +++ b/test/docker-compose-ci.yml @@ -0,0 +1,12 @@ +version: '2' + +services: + dead-drop: + build: . + image: rbdr/dead-drop + entrypoint: + - 'node' + - 'node_modules/.bin/eslint' + - '.' + - '--max-warnings' + - '0' -- cgit