add circleci config file
This commit is contained in:
parent
f1a591442f
commit
afb8bd6118
1 changed files with 16 additions and 0 deletions
16
circle.yml
Normal file
16
circle.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
machine:
|
||||||
|
python:
|
||||||
|
version: 3.5.1
|
||||||
|
node:
|
||||||
|
version: 6.9.1
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
pre:
|
||||||
|
- scripts/build
|
||||||
|
cache_directories:
|
||||||
|
- env
|
||||||
|
- node_modules
|
||||||
|
|
||||||
|
test:
|
||||||
|
override:
|
||||||
|
- scripts/runtests
|
Reference in a new issue