forked from juice-shop/juice-shop
-
Notifications
You must be signed in to change notification settings - Fork 28
/
.travis.yml
90 lines (90 loc) · 2.92 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
language: node_js
node_js:
- 10
- 8
- 11
stages:
- lint
- test
- integration
- e2e
- deploy
branches:
except:
- gh-pages
- l10n_develop
addons:
chrome: stable
code_climate:
repo_token:
secure: NC3ew4c92DO4SAdbJvaZkaRnEZaZcAr9NcxOeraqAKHRXY3COnerWGR8+kIE9KiadcRdatmu0sSjWldDcAZfmMwOraMI9CDkqdPSjtjciCVEFdGi+OPOvMY/gOJU6XeM7lsO5MvYD7mqChl2gR6s7IO/klPahf53c97PPDo3C90=
install: if [ -z "$TRAVIS_TAG" ]; then npm install; fi
script: if [ -z "$TRAVIS_TAG" ]; then NODE_ENV=test npm test; fi
before_deploy:
- rm -rf node_modules
- rm -rf frontend/node_modules
- npm install --production
- npm run package
deploy:
- provider: releases
overwrite: true
api_key:
secure: fHybcH65ZdS5ITVKH2tIVBITVSiRQJ1AuWqLP16gyAz5pdmWbLM5gA/74zCozanRmuB+7pGFbhDNm075JWoEDVrWSFDLnNiXvfgUYa4oVEiWZlLvOfSARaU3AQPlVvFVhIbG9SA5IEwTtNFbyHjqLjGn/DSBpiIDqqxhF57vw7Q=
file: dist/*
skip_cleanup: true
file_glob: true
draft: true
tag_name: "$TRAVIS_TAG"
on:
repo: bkimminich/juice-shop
tags: true
jobs:
include:
- stage: lint
if: tag IS blank
install: npm i -g standard && cd frontend && npm install && cd ..
script: npm run lint
- stage: integration
if: tag IS blank
script:
- export NODE_ENV=test
- npm test
- npm run frisby
after_success:
- "./node_modules/.bin/lcov-result-merger 'build/reports/coverage/**/lcov.info' 'build/reports/coverage/lcov_merged.info'"
- "./node_modules/.bin/codeclimate-test-reporter < ./build/reports/coverage/lcov_merged.info"
- stage: e2e
if: tag IS blank
script:
- export NODE_ENV=test
- npm run protractor
- stage: deploy
if: (branch = master OR branch = develop OR branch = facelift OR branch = gsoc2019) AND NOT type = pull_request
node_js: 11
install: skip
script: skip
deploy:
- provider: heroku
api_key:
secure: faVT3Ne/O7lVo0+pTm6RcXss0ivvSoODaxMkiVwdpk/51/EsRd4+/Gjmp3RGPmW5H5luOephsI8uFMMhgKiu5i3NV58ZSx29Z0aby+bfIhesZGZqJQvxeW8B0J8vlQFnEHP6xc6SAlXSdNjNpDeBaV7WSFSGKGp4Nh5QyO2ySLI=
app:
master: juice-shop
develop: juice-shop-staging
facelift: juice-shop-experimental
gsoc2019: juice-shop-gsoc
on:
repo: bkimminich/juice-shop
notifications:
webhooks:
urls:
- secure: QZ3/2h7hThg527PX1z7kTTRGL5jEbTTHRbetYHt8Gzgdhvtruq4cjxMQZdUcmxKlncAhoB976iFl/Ja9EpExgrXnt/Tj0Aft6JDc7g8y0kuD/SiQpFT7d46R7vOTJeFHyMzfQN9M/h81DXrG+VO5OPGR/QYNa39kMzkTc86tt1E=
on_success: always
on_failure: always
on_start: never
slack:
rooms:
secure: jis/Fcasy+4QCqg6SZnf1XxXTNFrQENutYCN4QuMUQbfiD6QsLxTQS5o0MZ8e9EYTdptUXmjjgkaEulxO5fIUtmDcOrKcPxToDMjyCZEglfEf9CzRVRap7LnZwoCZ5yet/0E68qt4QhfTgfwYc9QIfSZo45rdyNS6BXI2vomGqE=
on_success: change
on_failure: change
on_start: never
on_pull_requests: false