Skip to content
This repository was archived by the owner on Apr 19, 2020. It is now read-only.

Commit d337001

Browse files
committed
Add .travis.yml
1 parent 9b90132 commit d337001

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: node_js
2+
node_js:
3+
- lts/carbon
4+
addons:
5+
apt:
6+
- postgresql-client
7+
cache:
8+
directories:
9+
- node_modules
10+
services:
11+
- docker
12+
install:
13+
- yarn
14+
before_script:
15+
- docker-compose -f docker-compose.test.yml up -d
16+
script:
17+
- jest --ci --coverage
18+
after_script:
19+
- docker-compose down
20+
after_success:
21+
- npx codecov

0 commit comments

Comments
 (0)