-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
45 lines (39 loc) · 763 Bytes
/
Copy path.travis.yml
File metadata and controls
45 lines (39 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
sudo: false
language: node_js
node_js:
- "node"
before_script:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm run setup
- npm run build
script:
- npm run lint
- npm run coverage
after_success:
- npm run coveralls
- npm run typedoc
- npm pack
deploy:
- provider: pages
skip_cleanup: true
local_dir: docs/
github_token: $GITHUB_TOKEN
on:
branch: master
tags: true
- provider: releases
api_key: $GITHUB_TOKEN
file_glob: true
file: "ts-scikit-*.tgz"
skip_cleanup: true
on:
branch: master
tags: true
- provider: npm
skip_cleanup: true
email: "chris.engelsma@gmail.com"
api_key: $NPM_TOKEN
on:
branch: master
tags: true