[READ-ONLY] Mirror of https://github.com/bombshell-dev/args. <1kB CLI flag parser
args args-parser cli command-line command-line-parser node
5

Configure Feed

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

chore(ci): update actions

Nate Moore (Mar 31, 2025, 5:50 PM -0500) 23f5ccf9 a374c453

+37 -43
-43
.github/workflows/ci.yml
··· 1 - name: CI 2 - 3 - on: 4 - push: 5 - branches: 6 - - main 7 - pull_request: 8 - 9 - # Automatically cancel in-progress actions on the same branch 10 - concurrency: 11 - group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }} 12 - cancel-in-progress: true 13 - 14 - permissions: 15 - contents: write 16 - pull-requests: write 17 - packages: write 18 - id-token: write 19 - 20 - jobs: 21 - build: 22 - name: Build Packages 23 - runs-on: ubuntu-latest 24 - steps: 25 - - uses: actions/checkout@v4 26 - - uses: pnpm/action-setup@v4 27 - - uses: actions/setup-node@v4 28 - with: 29 - node-version: 20 30 - cache: "pnpm" 31 - - if: ${{ steps.cache-node.outputs.cache-hit != 'true' }} 32 - run: pnpm install 33 - - run: pnpm run build 34 - - run: pnpm run test 35 - - uses: changesets/action@v1 36 - if: ${{ github.event_name != 'pull_request' }} 37 - with: 38 - publish: pnpm changeset publish 39 - commit: "[ci] release" 40 - title: "[ci] release" 41 - env: 42 - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 43 - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+13
.github/workflows/format.yml
··· 1 + name: Format 2 + 3 + on: 4 + workflow_dispatch: 5 + push: 6 + branches: 7 + - main 8 + 9 + jobs: 10 + format: 11 + if: github.repository_owner == 'bombshell-dev' 12 + uses: bombshell-dev/automation/.github/workflows/format.yml@main 13 + secrets: inherit
+11
.github/workflows/preview.yml
··· 1 + name: Preview 2 + 3 + on: [push, pull_request] 4 + 5 + jobs: 6 + format: 7 + if: github.repository_owner == 'bombshell-dev' 8 + uses: bombshell-dev/automation/.github/workflows/preview.yml@main 9 + secrets: inherit 10 + with: 11 + publish: '.'
+13
.github/workflows/publish.yml
··· 1 + name: Publish 2 + 3 + on: 4 + workflow_dispatch: 5 + push: 6 + branches: 7 + - main 8 + 9 + jobs: 10 + publish: 11 + if: github.repository_owner == 'bombshell-dev' 12 + uses: bombshell-dev/automation/.github/workflows/publish.yml@main 13 + secrets: inherit