diff --git a/.appveyor.yml b/.appveyor.yml index e252a5e49a0..e2dc3c6d4d6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -22,6 +22,7 @@ test_script: - node --version - npm --version - which npm + - npm run appveyor:build - npm run appveyor:lint - npm run appveyor:test diff --git a/package.json b/package.json index 948bd3d6b1a..8164d4ca9fc 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,8 @@ "bin" ], "scripts": { - "appveyor:lint": "lerna bootstrap && npm run lint", + "appveyor:build": "lerna bootstrap && npm run build", + "appveyor:lint": "npm run lint && npm run tslint", "appveyor:test": "npm run test", "bootstrap": "npm run clean:all && npm install && lerna bootstrap", "build": "tsc",