-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
40 lines (37 loc) · 1010 Bytes
/
.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
matrix:
include:
- language: java
install: true
jdk:
- oraclejdk8
script:
- ./gradlew build
- language: node_js
node_js:
- 10.15
before_install:
- cd Frontend
install:
- npm install
- npm install --save axios
- npm install --save bootstrap-vue
- npm install --save jquery -D
- npm install --save vue@2.6.10
- npm install --save vue-template-compiler@2.6.10
- npm install --save aos
- npm install --save vue-cookie
- npm install --save vue-router
script:
- npm run build
- stage: deploy to backend app
script: skip
deploy:
provider: heroku
api_key: "18f21435-ea95-4281-b34a-000e79b86fee"
app: cooperator-backend-3417
- stage: deploy to frontend app
script: skip
deploy:
provider: heroku
api_key: "18f21435-ea95-4281-b34a-000e79b86fee"
app: cooperator-frontend-3417