forked from scorelab/senz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (31 loc) · 768 Bytes
/
Copy path.travis.yml
File metadata and controls
32 lines (31 loc) · 768 Bytes
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
sudo: required
matrix:
include:
- language: scala
scala: 2.12.6
services: mongodb
before_install:
- cd senz-switch
script:
- sbt ++$TRAVIS_SCALA_VERSION test
- language: python
python: 3.6
before_install:
- pip install pytest
script:
- pytest
- language: node_js
node_js: 10.16.2
services: mongodb
before_install:
- cd senz-web/backend
- mkdir config
- cd config/ && touch test.json
- echo '{"dbURI":"mongodb://localhost/senz-test","secretKey":"yash123"}' >>test.json
- cd ..
- npm install
- language: node_js
node_js: 10.16.2
before_install:
- cd senz-web/frontend
- npm install