You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
314 B
YAML
15 lines
314 B
YAML
language: node_js
|
|
node_js:
|
|
- "node"
|
|
branches:
|
|
only:
|
|
- master
|
|
before_script:
|
|
- echo "module.exports = require('./travis.js')" > config/env/env.js
|
|
script:
|
|
- npm run build
|
|
|
|
# Send coverage data to Coveralls
|
|
after_script:
|
|
- npm run cover && cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js
|