Don't do the tests and stuff multiple times on CI, it's just silly

This commit is contained in:
Samuel Attard 2017-09-07 14:18:04 +10:00
Родитель d700c0696c
Коммит bff8fc2cbf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E89DDE5742D58C4E
2 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -3,8 +3,3 @@ node_js:
- "4"
- "5"
- "6"
after_script:
- npm run demo
- npm run lint-output
- npm run test

Просмотреть файл

@ -9,7 +9,7 @@
"demo": "npm run build -- -o=electron.d.ts",
"prepublish": "npm run demo && npm run test-output",
"lint-output": "tslint -c tslint.json -t verbose electron.d.ts --fix",
"test": "mocha && standard && npm run test-output && npm run lint-output",
"test": "mocha && standard && npm run demo && npm run test-output && npm run lint-output",
"pretest-output": "npm run build -- -o=test-smoke/electron/index.d.ts && cd test-smoke/electron/test && rm -f *.js",
"test-output": "tslint electron.d.ts --format stylish && cd test-smoke/electron && tsc --project tsconfig.json",
"prepack": "check-for-leaks",