We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c96f5 commit b4b1780Copy full SHA for b4b1780
.firebaserc
@@ -0,0 +1,5 @@
1
+{
2
+ "projects": {
3
+ "default": "javascript-ds-algorithms-book"
4
+ }
5
+}
.travis.yml
@@ -1,12 +1,15 @@
language: node_js
node_js:
- node
+before_script:
+ - npm install -g --silent firebase-tools
6
install:
7
- npm install
8
script:
9
- npm run go
10
after_success:
11
- npm run coverage
12
+ - test $TRAVIS_BRANCH = "master" && firebase deploy --token $FIREBASE_TOKEN --non-interactive
13
notifications:
14
email:
15
on_failure: change
firebase.json
@@ -0,0 +1,11 @@
+ "hosting": {
+ "public": "examples",
+ "rewrites": [
+ {
+ "source": "**",
+ "destination": "/index.html"
+ ]
0 commit comments