-
Notifications
You must be signed in to change notification settings - Fork 21
/
.travis.yml
48 lines (43 loc) · 1.15 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
matrix:
services:
- mongodb
include:
install:
- sudo python -m pip install pymongo
- pip install -r Scrapper-Service/requirements.txt --user
language: python
python:
- "3.6"
script:
- python -m unittest test
before_script:
- cd User-App
- npm install --save-dev @angular-devkit/build-angular
- npm install -g --silent @angular/cli
language: node_js
node_js:
- "10"
script:
- ng lint
- ng test --watch=false --browsers=ChromeHeadless
- ng build --prod
before_script:
- cd Notifier-service
- npm install
language: node_js
node_js:
- "10"
script:
- npm run test --watch=false --browsers=ChromeHeadless
- npm run build --prod
# Uncomment the line below after adding proper test script for Search-Service
before_script:
- cd Search-Service
- npm install
language: node_js
node_js:
- "10"
script:
# - npm run test --watch=false --browsers=ChromeHeadless
- npm run build --prod