Skip to content

fix: add formatArg wraps any arg that contains a space in double quotes #7

fix: add formatArg wraps any arg that contains a space in double quotes

fix: add formatArg wraps any arg that contains a space in double quotes #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
paths-ignore:
- '**.md'
- 'docs/**'
- 'LICENSE'
- '.gitignore'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
- 'LICENSE'
- '.gitignore'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm typecheck
- name: Run tests
run: pnpm test
- name: Build package
run: pnpm build