Skip to content
This repository was archived by the owner on Jan 22, 2018. It is now read-only.

Commit a364e1c

Browse files
author
Kamil Kisiela
committed
Move to NPM
1 parent 13e30fb commit a364e1c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+1377
-873
lines changed

.travis.yml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
language: node_js
2+
cache:
3+
directories:
4+
- node_modules
5+
branches:
6+
only:
7+
- master
8+
- node
9+
notifications:
10+
email: false
211
node_js:
3-
- "0.12"
12+
- iojs
413
before_install:
5-
- "curl -L https://raw.githubusercontent.com/arunoda/travis-ci-meteor-packages/master/configure.sh | /bin/sh"
6-
- "npm install -g velocity-cli"
14+
- "npm install"
15+
- "export DISPLAY=:99.0"
16+
- "sh -e /etc/init.d/xvfb start"
717
before_script:
8-
- "export PATH=$HOME/.meteor:$PATH"
18+
- "npm prune"
919
script:
10-
- "velocity test-package ./ --ci"
20+
- "npm run test"
21+
after_success:
22+
- "npm run coverage:codecov"
23+
- "npm run coverage:coveralls"
24+
- "npm run coverage:codacy"

0 commit comments

Comments
 (0)