forked from coderaiser/cloudcmd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
47 lines (36 loc) · 703 Bytes
/
.travis.yml
File metadata and controls
47 lines (36 loc) · 703 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
46
language: node_js
node_js:
- 13
- 12
- 10
cache:
npm: false
matrix:
allow_failures:
- os: windows
os:
- linux
- osx
- windows
# https://docs.travis-ci.com/user/customizing-the-build/#git-end-of-line-conversion-control
# need for windows
git:
autocrlf: input
script:
- npm run lint && npm run build && npm run coverage && npm run report
notifications:
email:
on_success: never
on_failure: change
sudo: required
services:
- docker
deploy:
provider: script
script: npm run docker-ci
skip_cleanup: true
on:
node: '10'
condition: $TRAVIS_OS_NAME = linux
tags: true
all_branches: false