Skip to content
This repository was archived by the owner on Jun 24, 2019. It is now read-only.

Travis Jest integtation #7 #30

Open
wants to merge 11 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@ language: node_js
node_js:
- "10.10.0"
cache:
npm: true
directories:
- node_modules
install: yarn
script:
install: npm install
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we using npm instead of yarn here ?

before_script:
- yarn lint
- yarn build
- yarn start --silent &
- sleep 3
script:
- yarn test
notifications:
email: true
services:
- mongodb
Loading