Skip to content

Commit 75a9951

Browse files
authored
Merge pull request #26 from itemsapi/circleci-integration
CircleCI Integration
2 parents f5d3c08 + 3f9ece4 commit 75a9951

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Javascript Node CircleCI 2.0 configuration file
2+
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
3+
version: 2
4+
jobs:
5+
build:
6+
docker:
7+
- image: circleci/node:8
8+
steps:
9+
- checkout
10+
- restore_cache:
11+
keys:
12+
- v1-dependencies-{{ checksum "package.json" }}
13+
- v1-dependencies-
14+
- run: yarn install
15+
- save_cache:
16+
paths:
17+
- node_modules
18+
key: v1-dependencies-{{ checksum "package.json" }}
19+
- run: yarn test

0 commit comments

Comments
 (0)