Skip to content

Commit

Permalink
Merge pull request #2 from Alethio/integration-with-circle-ci
Browse files Browse the repository at this point in the history
Add CircleCI integration
  • Loading branch information
baxy authored Dec 14, 2018
2 parents 34e1853 + 5119307 commit 221ebee
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:latest

working_directory: ~/repo

steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: npm install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: npm run gulp prepare

0 comments on commit 221ebee

Please sign in to comment.