[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

add preview workflow

Nate Moore (Dec 19, 2024, 12:52 PM -0600) 9e0cb7f7 61200702

+25
+25
.github/workflows/preview.yml
··· 1 + name: Preview 2 + on: [push, pull_request] 3 + 4 + jobs: 5 + build: 6 + runs-on: ubuntu-latest 7 + 8 + steps: 9 + - name: Checkout 10 + uses: actions/checkout@v4 11 + 12 + - name: Install pnpm 13 + uses: pnpm/action-setup@v4 14 + 15 + - name: Setup Node 16 + uses: actions/setup-node@v4 17 + with: 18 + node-version: 20 19 + registry-url: https://registry.npmjs.org/ 20 + cache: "pnpm" 21 + 22 + - name: Install dependencies 23 + run: pnpm install 24 + 25 + - run: pnpx pkg-pr-new publish './packages/*'