Skip to content

Commit 81579b8

Browse files
authored
Add circleci config (#5)
1 parent db5c3a2 commit 81579b8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
jobs:
3+
test:
4+
docker:
5+
- image: circleci/node:10.22.0
6+
working_directory: ~/repo
7+
8+
steps:
9+
- checkout
10+
- run: npm install
11+
- run: npm test
12+
13+
workflows:
14+
version: 2
15+
16+
-deploy:
17+
jobs:
18+
- test

0 commit comments

Comments
 (0)