Skip to content

fix(neo4j): reconcile removed application artifacts #38

fix(neo4j): reconcile removed application artifacts

fix(neo4j): reconcile removed application artifacts #38

Workflow file for this run

name: CI
on:
# Every PR, whatever its base: the repo works in stacked PRs, and a base filter of `main`
# silently exempted every branch in a stack from CI (#105).
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Typecheck
run: bun run typecheck
- name: Unit + conformance tests
run: bun test
# Container suite is opt-in; ubuntu-latest ships Docker, so testcontainers works out of the box.
- name: Neo4j bolt container tests
run: RUN_CONTAINER_TESTS=1 bun test test/neo4j-bolt.test.ts