[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.

chore(ci): run test commands

Nate Moore (Nov 21, 2024, 9:14 PM -0600) 536d44cc a8e63822

+46 -21
+2 -21
.github/workflows/ci.yml
··· 1 1 name: CI 2 2 3 3 on: 4 - push: 5 - branches: 6 - - main 7 - 8 - permissions: 9 - contents: write 10 - pull-requests: write 11 - packages: write 4 + pull_request_target: 12 5 13 6 # Automatically cancel in-progress actions on the same branch 14 7 concurrency: ··· 28 21 cache: "pnpm" 29 22 - if: ${{ steps.cache-node.outputs.cache-hit != 'true' }} 30 23 run: pnpm install 31 - # TODO: is this manual build step actually needed? 32 - # `prepack` hook _should_ run but doesn't seem to. 33 24 - run: pnpm run type-check 34 - - run: pnpm run build 35 - - uses: changesets/action@v1 36 - if: ${{ github.event_name != 'pull_request' }} 37 - with: 38 - version: pnpm run ci:version 39 - publish: pnpm run ci:publish 40 - commit: "[ci] release" 41 - title: "[ci] release" 42 - env: 43 - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 44 - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 25 + - run: pnpm run test
+44
.github/workflows/release.yml
··· 1 + name: CI 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + 8 + permissions: 9 + contents: write 10 + pull-requests: write 11 + packages: write 12 + 13 + # Automatically cancel in-progress actions on the same branch 14 + concurrency: 15 + group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }} 16 + cancel-in-progress: true 17 + 18 + jobs: 19 + build: 20 + name: Build Packages 21 + runs-on: ubuntu-latest 22 + steps: 23 + - uses: actions/checkout@v3 24 + - uses: pnpm/action-setup@v2 25 + - uses: actions/setup-node@v3 26 + with: 27 + node-version: 18 28 + cache: "pnpm" 29 + - if: ${{ steps.cache-node.outputs.cache-hit != 'true' }} 30 + run: pnpm install 31 + # TODO: is this manual build step actually needed? 32 + # `prepack` hook _should_ run but doesn't seem to. 33 + - run: pnpm run type-check 34 + - run: pnpm run build 35 + - uses: changesets/action@v1 36 + if: ${{ github.event_name != 'pull_request' }} 37 + with: 38 + version: pnpm run ci:version 39 + publish: pnpm run ci:publish 40 + commit: "[ci] release" 41 + title: "[ci] release" 42 + env: 43 + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 44 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}