-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.travis.yml
31 lines (31 loc) · 964 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
language: node_js
node_js:
- "0.10"
before_script:
- npm install -g bower
- npm install
- bower install
# before_deploy: "echo 'ready?'"
# deploy:
# provider: heroku
# # Encrypt heroku token with the following:
# # travis encrypt $(heroku auth:token) --add deploy.api_key
# api_key: "YOUR API KEY"
# # After your tests ran and before the deploy,
# # Travis CI will clean up any additional files and changes you made
# # unless otherwise stated.
# skip_cleanup: true
# # It is also possible to deploy different branches to different applications:
# app:
# master: thesis-project-staging
# production: thesis-project-production
# # you might want to run a command on Heroku after a successful deploy.
# run:
# - ""
# # use restart command to restart app between or after commands
# - restart
# - ""
# # run commands after deploying, if deploy's successful
# after_deploy:
# # - ./after_deploy_1.sh
# # - ./after_deploy_2.sh