Skip to content

Commit

Permalink
Add .circleci/config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kujyp committed Feb 18, 2019
1 parent e73e883 commit febd66c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,25 @@
version: 2.0

jobs:
build:
docker:
- image: circleci/node:9.10.0

working_directory: ~/app

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 run deploy

0 comments on commit febd66c

Please sign in to comment.