mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 01:02:05 -07:00
26 lines
302 B
YAML
26 lines
302 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- "10"
|
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- ./install-redis.sh
|
|
|
|
script: "npm run test"
|
|
|
|
after_success:
|
|
- npm run coverage
|
|
|
|
deploy:
|
|
provider: script
|
|
skip_cleanup: true
|
|
script:
|
|
- npx semantic-release && ./deploy-production.sh
|