Skip to content

Commit

Permalink
Hook up travis-ci integration
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanseddon committed Aug 17, 2012
1 parent 94ede61 commit e54ffef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
@@ -0,0 +1,3 @@
language: node_js
node_js:
- 0.8
6 changes: 6 additions & 0 deletions grunt.js
Expand Up @@ -29,6 +29,9 @@ module.exports = function(grunt) {
lint: { lint: {
files: ['grunt.js', 'src/**/*.js', 'test/**/*.js'] files: ['grunt.js', 'src/**/*.js', 'test/**/*.js']
}, },
scripts: {
test: "grunt travis --verbose"
},
watch: { watch: {
files: '<config:lint.files>', files: '<config:lint.files>',
tasks: 'lint qunit' tasks: 'lint qunit'
Expand Down Expand Up @@ -57,5 +60,8 @@ module.exports = function(grunt) {


// Default task. // Default task.
grunt.registerTask('default', 'lint qunit concat min'); grunt.registerTask('default', 'lint qunit concat min');

// Travis CI task.
grunt.registerTask('travis', 'lint qunit');


}; };
2 changes: 1 addition & 1 deletion readme.md
@@ -1,4 +1,4 @@
H5F H5F [![Build Status](https://secure.travis-ci.org/ryanseddon/H5F.png?branch=master)](http://travis-ci.org/ryanseddon/H5F)
=== ===


### a JavaScript library that allows you to use the HTML5 Forms chapters new field input types, attributes and constraint validation API in non-supporting browsers. ### a JavaScript library that allows you to use the HTML5 Forms chapters new field input types, attributes and constraint validation API in non-supporting browsers.
Expand Down

0 comments on commit e54ffef

Please sign in to comment.