Added build config

This commit is contained in:
Zakary Timson 2018-06-24 22:01:50 -04:00
parent 6316988d1d
commit cec5097aa4

26
.circleci/config.yml Normal file
View File

@ -0,0 +1,26 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:10.4-browsers
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: yarn build
- run: yarn firebase-tools deploy --token "${FIREBASE_TOKEN}"