Skip to content

Commit 406a4e6

Browse files
committed
Run tests with CircleCI
1 parent efac0d6 commit 406a4e6

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

Gruntfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ module.exports = function(grunt) {
1616
grunt.loadNpmTasks('grunt-contrib-nodeunit');
1717

1818
grunt.registerTask('default', ['uglify']);
19+
grunt.registerTask('test', ['jshint']);
1920

2021
};

circle.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
machine:
2+
node:
3+
version: 0.10.29
4+
dependencies:
5+
post:
6+
- npm install grunt-cli -g

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
"bugs": {
2020
"url": "https://github.com/solidusjs/devtools-solidus/issues"
2121
},
22+
"scripts": {
23+
"test": "grunt test"
24+
},
2225
"devDependencies": {
2326
"grunt": "~0.4.5",
2427
"grunt-contrib-jshint": "~0.10.0",

0 commit comments

Comments
 (0)