Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

bd sync: 2026-01-11 13:59:56 #10

bd sync: 2026-01-11 13:59:56

bd sync: 2026-01-11 13:59:56 #10

Workflow file for this run

name: publish
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run typecheck
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test -- --run
- name: Build
run: npm run build