mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 09:12:05 -07:00
27 lines
321 B
YAML
27 lines
321 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- "10"
|
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
- redis-server
|
|
|
|
#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
|