forked from huan/file-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
55 lines (47 loc) · 922 Bytes
/
.travis.yml
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
46
47
48
49
50
51
52
53
54
55
os:
- linux
- osx
- windows
language: node_js
node_js:
- '13'
- '12'
- '11'
- '10'
cache:
directories:
- node_modules
script:
- echo $TRAVIS_OS_NAME
- node --version
- npm --version
- echo "Testing started ..."
- npm test
stages:
- test
- pack
- name: deploy
if: (type = push) AND branch =~ ^(master|v\d+\.\d+)$
jobs:
include:
- stage: pack
script:
- ./scripts/generate-version.sh
- npm run test:pack
- echo 'Npm Pack Testing Finished.'
- stage: deploy
script:
- echo "Deploying to NPM ..."
- npm version
- ./scripts/generate-version.sh
- ./scripts/package-publish-config-tag.sh
- npm run dist
deploy:
provider: npm
email: [email protected]
api_key: "$NPM_TOKEN"
skip_cleanup: true
notifications:
email:
on_success: change
on_failure: change