Skip to content

Commit

Permalink
Merge 1df06b5 into fb36500
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelyali committed Dec 17, 2018
2 parents fb36500 + 1df06b5 commit 63088b7
Show file tree
Hide file tree
Showing 180 changed files with 17,813 additions and 9,706 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# dependencies
/node_modules
integration/**/node_modules
yarn-error.log
npm-debug.log

Expand Down
1 change: 1 addition & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
Expand Down
26 changes: 17 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
language: node_js

node_js:
- "8"
- "9"
- "10"
- '10'

env:
- DOCKER_COMPOSE_VERSION=1.23.1

before_install:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin

before_script:
- npm i -g npm@latest
- npm i -g npm@latest

install:
- npm i
- docker-compose up -d
- cd integration/typeorm
- npm i
- cd ../../
- npm i

script:
- npm test
- npm run test:e2e

after_success: npm run coverage
- npm run test:e2e | coveralls
Loading

0 comments on commit 63088b7

Please sign in to comment.