Merged battery repo

This commit is contained in:
2023-11-25 11:09:01 -05:00
parent b41834fc50
commit 9c779da4d2
65 changed files with 56 additions and 80 deletions

View File

@ -0,0 +1,33 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:12.14-browsers
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run:
name: Install Dependancies
command: yarn
- save_cache:
key: v1-dependencies-{{ checksum "package.json" }}
paths:
- node_modules
- functions/node_modules
- run:
name: Build
command: npm run build
- run:
name: Deploy
command: npm run deploy