Skip to content

feat: add command bulk-import list #30

feat: add command bulk-import list

feat: add command bulk-import list #30

Workflow file for this run

name: CI Test
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test on ${{ matrix.os }} with Node ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [20.x, 22.x, 24.x]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run type:check
- name: Run tests
run: npm run test:coverage
- name: Build
run: npm run build
- name: Verify binary execution
run: node dist/index.js version