Skip to content

chore(kb): publish update #18

chore(kb): publish update

chore(kb): publish update #18

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with:
bun-version: "1.3.14"
- run: bun install --frozen-lockfile --ignore-scripts
- run: bun run check
- run: |
generated_status="$(git status --porcelain --untracked-files=all -- dist bun.lock)"
if [[ -n "$generated_status" ]]; then
printf '%s\n' "$generated_status"
exit 1
fi
- run: bun pm pack --dry-run --ignore-scripts
- run: node --input-type=module -e 'await Promise.all(["./dist/index.js","./dist/clip/browser-profiles.js","./dist/capture.js","./dist/clip/acquire.js","./dist/clip/args.js","./dist/clip/bounded-byte-buffer.js","./dist/clip/cli.js","./dist/clip/doctor.js","./dist/clip/network.js","./dist/clip/network-proxy.js","./dist/clip/persist.js","./dist/clip/terminal.js","./dist/graph.js","./dist/navigation.js","./dist/pdf.js","./dist/query.js","./dist/semantic.js"].map((path) => import(path)))'