Added basic Travis integration

This commit is contained in:
Joe Reeve
2018-12-04 19:39:10 +01:00
parent ded5aab45f
commit 50274a38a4
2 changed files with 15 additions and 1 deletions

13
.travis.yml Normal file
View File

@ -0,0 +1,13 @@
{
"language": "node_js",
"node_js": "8",
"script": [
"npm run build",
],
"install": [
"npm ci",
],
"services": [
"redis-server",
],
}

View File

@ -4,6 +4,7 @@
"description": "[✔]: assets/images/checkbox-small-blue.png", "description": "[✔]: assets/images/checkbox-small-blue.png",
"main": "gen-pdf.js", "main": "gen-pdf.js",
"scripts": { "scripts": {
"build": "node gen-pdf.js",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"repository": { "repository": {
@ -21,4 +22,4 @@
"graceful-fs": "^4.1.15", "graceful-fs": "^4.1.15",
"showdown": "^1.9.0" "showdown": "^1.9.0"
} }
} }