Skip to content

Commit a89dc3e

Browse files
committed
Added CircleCI
1 parent a483669 commit a89dc3e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.circleci/config.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:8
6+
7+
working_directory: ~/repo
8+
9+
steps:
10+
- checkout
11+
- restore_cache:
12+
key: dependency-cache-{{ checksum "package.json" }}
13+
14+
- run:
15+
name: Install Dependencies
16+
command: npm i
17+
18+
- save_cache:
19+
paths:
20+
- node_modules
21+
key: dependency-cache-{{ checksum "package.json" }}
22+
23+
- run:
24+
name: Build
25+
command: npm run build

0 commit comments

Comments
 (0)