Properties to accept Literal. QueryBuilder.set to accept Literal in d… #202
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |