Skip to content

feat(hub): /health reports the deployed commit (BRO-2227) #12

feat(hub): /health reports the deployed commit (BRO-2227)

feat(hub): /health reports the deployed commit (BRO-2227) #12

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