Skip to content

fix: --from/--to 参数被 --last 默认值覆盖 #12

fix: --from/--to 参数被 --last 默认值覆盖

fix: --from/--to 参数被 --last 默认值覆盖 #12

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm typecheck
- name: Lint
run: pnpm lint
- name: Run tests
run: pnpm test
- name: Build
run: pnpm build