-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
43 lines (35 loc) · 1.12 KB
/
.travis.yml
File metadata and controls
43 lines (35 loc) · 1.12 KB
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
# Travis CI configuration file.
# https://docs.travis-ci.com/user/getting-started/
# https://docs.travis-ci.com/user/multi-os/
os:
- linux
# https://docs.travis-ci.com/user/trusty-ci-environment/
# Use the new Debian 14 containers.
dist: trusty
sudo: false
# https://docs.travis-ci.com/user/languages/javascript-with-nodejs/#Specifying-Node.js-versions
# If you need to install a second programming language in your current
# build environment, for example installing a more recent version of
# Ruby than the default version present in all build environments you
# can do so in the `before_install` stage of the build.
language: node_js
node_js:
- "node"
# https://docs.travis-ci.com/user/customizing-the-build/#Git-Clone-Depth
git:
# Limit the clone depth; default is 50.
depth: 3
env:
global:
# - SCRIPT="scripts/travis.sh"
# https://docs.travis-ci.com/user/notifications/#Configuring-email-notifications
notifications:
email:
on_success: always # default: change
on_failure: always # default: always
cache:
directories:
- node_modules # NPM packages
branches:
except:
- /^v\d+\.\d+(\.\d+)?([-.]\d+)?$/