[READ-ONLY] Mirror of https://github.com/bombshell-dev/automation. GitHub Actions for the Bombshell organization
ci
0

Configure Feed

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

Update run.yml

authored by

Nate Moore and committed by
GitHub
(Jun 3, 2025, 11:40 PM -0500) 2b110d83 72653686

+11 -5
+11 -5
.github/workflows/run.yml
··· 2 2 on: 3 3 workflow_call: 4 4 inputs: 5 - command: 5 + commands: 6 6 type: 'string' 7 - description: 'The name of the package.json script to run' 7 + description: | 8 + A JSON array of package.json scripts, e.g. 9 + '["lint","test","types"]' 8 10 required: true 9 11 secrets: 10 12 BOT_APP_ID: ··· 15 17 required: true 16 18 17 19 jobs: 18 - build: 20 + run: 19 21 if: github.repository_owner == 'bombshell-dev' 20 22 runs-on: ubuntu-latest 23 + 24 + strategy: 25 + matrix: 26 + command: ${{ fromJson(inputs.commands) }} 21 27 22 28 steps: 23 29 - name: Generate a token ··· 45 51 - name: Install dependencies 46 52 run: pnpm install 47 53 48 - - name: Build 54 + - name: Run ${{ matrix.command }} 49 55 run: pnpm run "${{env.COMMAND}}" 50 56 env: 51 - COMMAND: ${{ inputs.command }} 57 + COMMAND: ${{ matrix.command }}