Skip to content

Properties to accept Literal. QueryBuilder.set to accept Literal in data #198

Properties to accept Literal. QueryBuilder.set to accept Literal in data

Properties to accept Literal. QueryBuilder.set to accept Literal in data #198

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
runTests:
runs-on: ubuntu-latest
env:
NEO4J_PASSWORD: cicicici
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run neo4j
run: docker run -d --restart always --publish=7474:7474 --publish=7687:7687 --env NEO4J_AUTH=neo4j/$NEO4J_PASSWORD neo4j:5.8.0
- name: Install dependencies
run: yarn
- name: Wait for neo4j
uses: ifaxity/[email protected]
with:
resource: http://localhost:7474
- name: Run tests
run: |
export NEO4J_URL="bolt://localhost:7687"
export NEO4J_USERNAME="neo4j"
export NEO4J_PASSWORD="$NEO4J_PASSWORD"
yarn test