diff --git a/.travis.yml b/.travis.yml index 587bd3e..c758063 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1 +1,7 @@ language: node_js +node_js: +- '0.10' +before_install: +- npm install -g typescript@1.0 +script: +- npm test diff --git a/package.json b/package.json index a2ceeae..c3b0468 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,9 @@ "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", - "watch": "tsc -watch -p ./" + "watch": "tsc -watch -p ./", + "pretest": "npm run compile", + "test": "" }, "devDependencies": { "typescript": "^3.7.2",