feat(completions): add dynamic zsh generator and export program #65
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - run: corepack enable | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Typecheck | |
| run: yarn typecheck | |
| - name: Run tests | |
| run: yarn test:run | |
| - name: Build | |
| run: yarn build | |
| - name: Smoke test (Node ESM) | |
| run: yarn node dist/index.js --help |