-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
44 lines (41 loc) · 765 Bytes
/
.travis.yml
File metadata and controls
44 lines (41 loc) · 765 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
language: nodejs
node_js:
- node
before_install:
- chmod +x buildtigger.sh
- "./buildtigger.sh start"
install:
- nvm install node
- node --version
- npm --version
- nvm --version
- npm i webpack-cli
- npm run setup
- npm run build
script:
- npm run test-only
after_success:
- npm run typedoc
- npm pack
deploy:
- provider: pages
skip_cleanup: true
local_dir: docs/
github_token: $GITHUB_TOKEN
on:
tags: true
- provider: releases
api_key: $GITHUB_TOKEN
file_glob: true
file: "diagramJS-*.tgz"
skip_cleanup: true
on:
tags: true
- provider: npm
skip_cleanup: true
email: "Stefan@uni-kassel.de"
api_key: $NPM_TOKEN
on:
tags: true
after_script:
- "./buildtigger.sh stop"