22 lines
249 B
YAML
22 lines
249 B
YAML
---
|
|
language: node_js
|
|
node_js:
|
|
- "6"
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.npm
|
|
|
|
before_install:
|
|
- npm config set spin false
|
|
- npm install -g phantomjs-prebuilt
|
|
- phantomjs --version
|
|
|
|
install:
|
|
- npm install
|
|
|
|
script:
|
|
- npm test
|