Initial continuous integration

* Work towards resolving #1346
* package json: add empty test (run by travisCI by default)
* add minimal .travis.yml
This commit is contained in:
Peter Krautzberger 2016-02-04 12:13:55 +01:00
parent 3ba60663df
commit 6ca711a811
2 changed files with 11 additions and 1 deletions

7
.travis.yml Normal file
View File

@ -0,0 +1,7 @@
language: node_js
node_js:
- '5'
sudo: false
script:
- npm install
- npm test

View File

@ -23,5 +23,8 @@
"type": "git",
"url": "git://github.com/mathjax/MathJax.git"
},
"main": "./MathJax.js"
"main": "./MathJax.js",
"scripts": {
"test": "echo 'No tests here!'"
}
}