Skip to content

Rename board task branches to OWN-xx #753

Rename board task branches to OWN-xx

Rename board task branches to OWN-xx #753

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
check:
name: Check, typecheck, and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24.7.0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.8
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check formatting and lint
run: bun run check
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun test