Make docs/knowledge/ queryable: lookup CLI and repo skill #18
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
| # .github/workflows/ci.yml | |
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version-file: .bun-version | |
| - name: Install (frozen lockfile) | |
| run: bun install --frozen-lockfile | |
| - name: Typecheck | |
| run: bun run typecheck | |
| - name: Lint | |
| run: bun run lint | |
| - name: Build | |
| run: bun run build | |
| - name: Test (with coverage) | |
| run: bun test --coverage | |
| - name: API surface check | |
| run: bun run api | |
| # `lint:publish` ignores attw's `cjs-resolves-to-esm` rule. That is not a | |
| # workaround for a fixable defect: @dexpace/core is ESM-only by design (no | |
| # `require` condition in its exports map), so a CJS `require()` of it | |
| # necessarily resolves to ESM and attw always flags it. Every other attw | |
| # rule stays blocking. The `main`/`types` fields on the package exist so | |
| # legacy `node10` resolution still finds the entry point — without them | |
| # attw reports a hard resolution failure. | |
| - name: Package health (publint + attw) | |
| run: bun run lint:publish | |
| - name: Dual JS/TS consumption check | |
| run: bun run verify:dual-consumption | |
| - name: SEAM-1 zero-dependency check | |
| run: bun run verify:seam-1 | |
| - name: Runtime-floor consistency check | |
| run: bun run verify:runtime-floor | |
| - name: Dependency audit | |
| run: bun run audit | |
| node-floor-conformance: | |
| needs: ci | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version-file: .bun-version | |
| - name: Install (frozen lockfile) | |
| run: bun install --frozen-lockfile | |
| - name: Build | |
| run: bun run build | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18.17.0 | |
| - name: Verify the built artifact against the declared minimum Node version (NFR-10/NFR-17) | |
| run: node scripts/verify-node-floor.mjs |