Skip to content

docs(demo): a beat sheet for the product that was actually built (BRO… #13

docs(demo): a beat sheet for the product that was actually built (BRO…

docs(demo): a beat sheet for the product that was actually built (BRO… #13

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: lint / test / demo
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.14
- name: Install
run: bun install
- name: Lint
run: bun run lint
- name: Test
run: bun test
- name: Demo smoke test
run: bun run demo