2018-06-20 02:22:35 +00:00
|
|
|
sudo: required
|
2017-10-16 03:35:58 +00:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
2018-06-19 22:22:18 +00:00
|
|
|
- "8.11.1"
|
|
|
|
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
# eventually set up AWS stuff here
|
2018-06-20 17:01:11 +00:00
|
|
|
- docker-compose -f docker-compose-development.yml up -d
|
2018-06-19 22:22:18 +00:00
|
|
|
- docker ps -a
|
|
|
|
|
2018-06-20 03:01:04 +00:00
|
|
|
install: true
|
|
|
|
|
2018-06-20 02:22:35 +00:00
|
|
|
script:
|
|
|
|
# Run unit tests in the app container
|
|
|
|
- docker-compose exec -T app npm run test --verbose
|
|
|
|
|
2018-06-20 17:01:11 +00:00
|
|
|
after_success:
|
|
|
|
- docker-compose stop
|
|
|
|
- docker-compose build --no-cache
|