feat: add interactive prompt to put command; (#8)
#4
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: [main] | |
| pull_request: | |
| branches: [main] | |
| env: | |
| NODE_VER: 24.13 | |
| CI: true | |
| jobs: | |
| test-module: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| with: | |
| run_install: false | |
| - name: Use Node.js ${{ env.NODE_VER }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VER }} | |
| cache: 'pnpm' | |
| - name: Install deps and prepare types | |
| run: pnpm i | |
| # Check building | |
| - run: pnpm build | |
| # Check linting and typing | |
| - run: pnpm lint && pnpm format:check | |