fix(neo4j): reconcile removed application artifacts #38
Workflow file for this run
This file contains hidden or 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: 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 |