From f9ac958918797b5f9965633466ee01db677c95a7 Mon Sep 17 00:00:00 2001 From: Jigar Dafda Date: Sat, 2 May 2015 10:20:43 +0530 Subject: [PATCH] added travis configuration file and badge --- .travis.yml | 6 ++++++ README.md | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..af35496 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: node_js +node_js: + - "0.12" + - "0.10" +before_install: npm install -g grunt-cli +install: npm install diff --git a/README.md b/README.md index a4276ef..a6e93e1 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ load-grunt-config is a Grunt library that allows you to break up your Gruntfile config by task. For most small projects a single Gruntfile.js is perfect. But as a project grows, the Gruntfile.js can quickly become unmanagable; this is where load-grunt-config comes in handy. It was heavily inspired by [Thomas Boyt's "More Maintainable Gruntfiles"](http://www.thomasboyt.com/2013/09/01/maintainable-grunt.html). +[![Build Status](https://travis-ci.org/firstandthird/load-grunt-config.svg?branch=master)](https://travis-ci.org/firstandthird/load-grunt-config) + ##Features - Each task has its own config file. Example: jshint.js, mocha.js, etc.