12 lines
185 B
YAML
12 lines
185 B
YAML
language: node_js
|
|
|
|
cache:
|
|
npm: false
|
|
|
|
# Retry install on fail to avoid failing a build on network/disk/external errors
|
|
install:
|
|
- travis_retry npm install
|
|
|
|
script:
|
|
- npm run test
|