Help Wanted: Simple Neo4j Sample

I am putting together simple samples for various database tools and software (only official docker images at this time). Does anyone have enough experience with Neo4j to provide a simple pipeline that is able to start and ping a Neo4j database service, using the official Neo4j images? Ideally something similar to this Mongo or CouchDB example:

kind: pipeline
name: default

steps:
- name: ping
  image: mongo:4
  commands:
  - sleep 5
  - mongo --host mongo --eval "db.version()"

services:
- name: mongo
  image: mongo:4
  command: [ --smallfiles ]
---
kind: pipeline
name: default

platform:
  os: linux
  arch: amd64

steps:
- name: test
  image: couchdb:2.2
  commands:
  - sleep 15
  - curl http://database:5984

services:
- name: database
  image: couchdb:2.2
  ports:
  - 5984

...