forked from MassiveNerds/RetroMatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (26 loc) · 765 Bytes
/
.travis.yml
File metadata and controls
32 lines (26 loc) · 765 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
#.travis.yml
language: node_js
node_js:
- "6.9"
branches:
only:
- master
before_script:
- git config --global user.email "builds@travis-ci.com"
- git config --global user.name "Travis CI"
- git checkout master
- npm install -g firebase-tools
- npm install -g @angular/cli
- npm install -g ts-node
- npm install -g typescript
script:
- npm run-script build
- npm version patch -m "[CHORE] Bump Version %s [skip ci]"
- git push https://$GITHUB_TOKEN@github.com/wordythebyrd/agile-retrospective master
- git push https://$GITHUB_TOKEN@github.com/wordythebyrd/agile-retrospective --tags
after_success:
- firebase deploy --token $FIREBASE_TOKEN --non-interactive
notifications:
email:
on_failure: change
on_success: change