Skip to content

Commit aaa28ed

Browse files
committed
temp-db only works with neo4j > 4.0
1 parent 83651e4 commit aaa28ed

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
node-version: [ 10.x ]
30-
neo4j-version: [ "3.5", "3.5-enterprise", "4.2", "4.2-enterprise" ]
30+
neo4j-version: [ "4.3", "4.3-enterprise" ]
3131
services:
3232
neo4j:
3333
image: neo4j:${{ matrix.neo4j-version }}
@@ -46,11 +46,7 @@ jobs:
4646
steps:
4747
- name: Download dataset
4848
run: curl --fail --output /tmp/movies.cypher https://raw.githubusercontent.com/neo4j-graph-examples/movies/8508a527d8aa1c261b0978d1d5b3156d4ac8328e/scripts/import.cypher
49-
- name: Import dataset (Neo4j 3.5)
50-
if: ${{ startsWith(matrix.neo4j-version, '3.5') }}
51-
run: docker exec --interactive neo4j-e2e sh -c 'cat /movies/movies.cypher | cypher-shell -u neo4j -p abcde'
5249
- name: Import dataset
53-
if: ${{ !startsWith(matrix.neo4j-version, '3.5') }}
5450
run: docker exec --interactive neo4j-e2e cypher-shell -u neo4j -p abcde --file /movies/movies.cypher
5551
- name: Check out project sources
5652
uses: actions/checkout@v2

0 commit comments

Comments
 (0)