Skip to content

Commit 0f2b800

Browse files
committed
Add travis
1 parent 88ff589 commit 0f2b800

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: node_js
2+
node_js:
3+
- "node"
4+
- "6"
5+
- "5"
6+
- "4"
7+
before_install:
8+
- sudo apt-get install imagemagick

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# simplex-noise.js
2+
[![Build Status](https://travis-ci.org/jwagner/simplex-noise.svg?branch=master)](https://travis-ci.org/jwagner/simplex-noise)
23

34
simplex-noise.js is a fast simplex noise implementation in Javascript. It works in the browser and on nodejs.
45

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
"devDependencies": {
1010
"buster": "~0.7.8",
11-
"buster": "~0.6.2",
1211
"benchmark": "~2.1.0",
1312
"microtime": "~2.0.0"
1413
},
@@ -28,5 +27,8 @@
2827
"repository": {
2928
"type": "git",
3029
"url": "https://github.com/jwagner/simplex-noise.js.git"
30+
},
31+
"scripts": {
32+
"test": "./node_modules/buster/bin/buster-test"
3133
}
3234
}

0 commit comments

Comments
 (0)