Skip to content

feat: add interactive prompt to put command; (#8) #4

feat: add interactive prompt to put command; (#8)

feat: add interactive prompt to put command; (#8) #4

Workflow file for this run

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