Skip to content

Commit

Permalink
Added CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
sonufrienko committed Aug 6, 2018
1 parent a483669 commit a89dc3e
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
jobs:
build:
docker:
- image: circleci/node:8

working_directory: ~/repo

steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}

- run:
name: Install Dependencies
command: npm i

- save_cache:
paths:
- node_modules
key: dependency-cache-{{ checksum "package.json" }}

- run:
name: Build
command: npm run build

0 comments on commit a89dc3e

Please sign in to comment.