Skip to content

Commit 7f52996

Browse files
authored
Merge pull request #25 from Arcanemagus/travis-ci
ci: add Travis CI configuration
2 parents 819e8eb + 0405a8c commit 7f52996

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ __tests__/*
33
.circleci/*
44
coverage/*
55
.npmignore
6+
.travis.yml
67
.gitignore
78
.gitattributes
89
.github_changelog_generator

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
language: node_js
2+
os: linux
3+
4+
jobs:
5+
include:
6+
- stage: test
7+
node_js: lts/*
8+
- stage: test
9+
node_js: node
10+
11+
notifications:
12+
email:
13+
on_success: never
14+
on_failure: change
15+
16+
branches:
17+
only:
18+
- master
19+
- "/^greenkeeper/.*$/"
20+
21+
git:
22+
depth: 10
23+
24+
dist: trusty
25+
26+
sudo: false
27+
28+
stages:
29+
- test

0 commit comments

Comments
 (0)