Skip to content

bd daemon sync: 2026-01-11 20:58:14 #186

bd daemon sync: 2026-01-11 20:58:14

bd daemon sync: 2026-01-11 20:58:14 #186

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Run tests
run: pnpm test
- name: Lint
run: pnpm lint:check
- name: Format check
run: pnpm format:check