Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit 899ebe1

Browse files
committed
Added travis config.
1 parent dba95cb commit 899ebe1

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
.eslintrc
22

3+
.travis.yml
4+
35
Makefile

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: node_js
2+
node_js:
3+
- "4"
4+
- "5"
5+
- "6"
6+
- "7"
7+
before_install:
8+
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
9+
- npm install doxdox -g
10+
after_success:
11+
- bash <(curl -s https://codecov.io/bash)
12+
sudo: false

0 commit comments

Comments
 (0)