From e4eae4c234c7c7c1b9655c709ecc3ed3fe439009 Mon Sep 17 00:00:00 2001 From: Spiral Out Date: Sat, 7 Oct 2017 13:50:43 +0300 Subject: [PATCH 1/4] Be clear that the paragraph is for Javascript tests --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 6446d18..977d745 100644 --- a/Readme.md +++ b/Readme.md @@ -27,7 +27,7 @@ This is my repo full of code problems that I have completed prior to or during a * [Shortest Fizz Buzz](https://github.com/blakeembrey/code-problems/tree/master/problems/shortest-fizz-buzz) -## Tests +## Javascript Tests ```sh npm install # Installs `mocha` and any other dependencies needed to run From f6e43f989811c1bc28a6576c857ae279795bcde6 Mon Sep 17 00:00:00 2001 From: Spiral Out Date: Sat, 7 Oct 2017 14:24:27 +0300 Subject: [PATCH 2/4] Add TravisCI build status badge --- Readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Readme.md b/Readme.md index 977d745..79a7fde 100644 --- a/Readme.md +++ b/Readme.md @@ -28,6 +28,7 @@ This is my repo full of code problems that I have completed prior to or during a * [Shortest Fizz Buzz](https://github.com/blakeembrey/code-problems/tree/master/problems/shortest-fizz-buzz) ## Javascript Tests +[![Build Status](https://travis-ci.org/SpiralOutDotEu/code-problems.svg?branch=master)](https://travis-ci.org/SpiralOutDotEu/code-problems) ```sh npm install # Installs `mocha` and any other dependencies needed to run From 05b53d7347337657e8ea1b5a7aeb30ab025e26a5 Mon Sep 17 00:00:00 2001 From: Spiral Out Date: Sat, 7 Oct 2017 14:24:57 +0300 Subject: [PATCH 3/4] Add TravisCI integration --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b7fbe2e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: node_js +node_js: + - "node" +before_script: + - npm install +script: + - npm test + From 62e98482121495f175af904c701f304a7ed164a6 Mon Sep 17 00:00:00 2001 From: Spiral Out Date: Sat, 7 Oct 2017 14:36:55 +0300 Subject: [PATCH 4/4] tell Travis to ignore git submodules --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index b7fbe2e..60232cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,13 @@ language: node_js node_js: - "node" + +git: + submodules: false + before_script: - npm install + script: - npm test