Skip to content

support for configs in jsonc or json #59

support for configs in jsonc or json

support for configs in jsonc or json #59

Workflow file for this run

name: CLI Build
on:
push:
branches: [main]
paths: ["cli/**", ".github/workflows/cli-build.yml"]
pull_request:
paths: ["cli/**", ".github/workflows/cli-build.yml"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.22
- name: Install dependencies
working-directory: ./cli
run: bun install --frozen-lockfile
- name: Type check
working-directory: ./cli
run: bun run typecheck
- name: Build CLI
working-directory: ./cli
run: bun run build
- name: Check build artifacts
working-directory: ./cli
run: |
ls -la dist/
test -f dist/index.js