Skip to content

Commit 4594236

Browse files
author
Josh David Miller
committed
chore: add circleci configuration
1 parent 5eeafb3 commit 4594236

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

circle.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
machine:
2+
node:
3+
version: 6.1.0
4+
pre:
5+
- curl -k -L -o neo4j.tar.gz https://neo4j.com/artifact.php?name=neo4j-community-3.0.6-unix.tar.gz
6+
- tar -xzvf neo4j.tar.gz
7+
- sed -i "s|#dbms.security.auth_enabled=false|dbms.security.auth_enabled=false|g" neo4j-community-3.0.6/conf/neo4j.conf
8+
- neo4j-community-3.0.6/bin/neo4j start
9+
- sleep 5
10+
- cat neo4j-community-3.0.6/logs/neo4j.log
11+
test:
12+
override:
13+
- npm run test:ci
14+

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"start": "node index.js",
88
"dev": "nodemon index.js",
99
"test": "tape -r babel-polyfill -r babel-register src/**/*spec.js | faucet",
10+
"test:ci": "tape -r babel-polyfill -r babel-register src/**/*spec.js",
1011
"data:worlds": "mongoimport --db dev --drop --jsonArray --type json --file fixtures/worlds.json --collection worlds",
1112
"data:outlines": "mongoimport --db dev --drop --jsonArray --type json --file fixtures/outlines.json --collection outlines",
1213
"data:characters": "mongoimport --db dev --drop --jsonArray --type json --file fixtures/characters.json --collection characters",

0 commit comments

Comments
 (0)