Skip to content

support for configs in jsonc or json #57

support for configs in jsonc or json

support for configs in jsonc or json #57

Workflow file for this run

name: CLI Tests
on:
push:
branches: [main]
paths: ["cli/**", ".github/workflows/cli-test.yml"]
pull_request:
paths: ["cli/**", ".github/workflows/cli-test.yml"]
jobs:
test:
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: Run tests
working-directory: ./cli
run: bun test
- name: Type check
working-directory: ./cli
run: bun run typecheck