Skip to content

Add agent profile support and enhance CLI argument parsing #22

Add agent profile support and enhance CLI argument parsing

Add agent profile support and enhance CLI argument parsing #22

Workflow file for this run

name: ci
on:
pull_request:
push:
branches: [main]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: [20, 22]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.15.4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: Install
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Duplication check
run: pnpm dupcheck
- name: Docs check
run: pnpm docs:check
- name: Test
run: pnpm test