Skip to content

Commit c77b0d8

Browse files
committed
GGP-460: testing with @neo4j-labs/temp-dbs
1 parent 3eabd11 commit c77b0d8

File tree

5 files changed

+3525
-6993
lines changed

5 files changed

+3525
-6993
lines changed

.circleci/config.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: 2.1
2+
jobs:
3+
test:
4+
docker:
5+
- image: cimg/node:12.21.0
6+
environment:
7+
NEO4J_URI: bolt://localhost:7687
8+
NEO4J_USER: neo4j
9+
NEO4J_PASSWORD: 123456
10+
NEO4J_VERSION: 4.2.1
11+
- image: neo4j:enterprise
12+
environment:
13+
NEO4J_ACCEPT_LICENSE_AGREEMENT: "yes"
14+
NEO4J_AUTH: neo4j/123456
15+
steps:
16+
- checkout
17+
- run:
18+
command: npm install
19+
- run:
20+
command: npm test
21+
workflows:
22+
testing:
23+
jobs:
24+
- test
25+

0 commit comments

Comments
 (0)