Skip to content

Fix noisy CLI error output #5

Fix noisy CLI error output

Fix noisy CLI error output #5

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
workflow_dispatch:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
check:
name: Check package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: "24"
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Typecheck
run: bun run typecheck
- name: Smoke init/status
run: |
tmp=$(mktemp -d)
bun src/index.ts init --config "$tmp/orw.config.json"
bun src/index.ts --config "$tmp/orw.config.json" status
- name: Verify npm package contents
run: npm pack --dry-run