-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aeb3d0e
commit 5cd79fd
Showing
6 changed files
with
1,822 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Cypher Queries | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
neo4j: | ||
image: neo4j:4.3 | ||
ports: | ||
- 7687:7687 | ||
env: | ||
NEO4J_AUTH: neo4j/s3cr3t | ||
NEO4J_ACCEPT_LICENSE_AGREEMENT: yes | ||
NEO4JLABS_PLUGINS: '["apoc", "graph-data-science"]' | ||
options: >- | ||
--health-cmd "cypher-shell -u neo4j -p s3cr3t 'RETURN 1'" | ||
--health-interval 5s | ||
--health-timeout 60s | ||
--health-retries 12 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 12 | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12' | ||
- run: npm ci | ||
- run: npm run fetchAsciiDoc | ||
- run: npm run checkQueries | ||
env: | ||
NEO4J_DATABASE_URI: 'bolt://localhost:7687' | ||
NEO4J_DATABASE_USER: 'neo4j' | ||
NEO4J_DATABASE_PASSWORD: 's3cr3t' |
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
Empty file.
Oops, something went wrong.