diff --git a/.github/workflows/cmd-action.yml b/.github/workflows/cmd-action.yml index 07488e761ea02..08ea0fbf427ae 100644 --- a/.github/workflows/cmd-action.yml +++ b/.github/workflows/cmd-action.yml @@ -32,6 +32,22 @@ jobs: env: CMD: ${{ steps.cmd.outputs.commands }} + cmd-composite: + needs: [cmd-check] + continue-on-error: true + # We set the current machine here (to differ between ours and generic ones) + runs-on: ubuntu-latest + strategy: + matrix: + command: ${{ fromJson(needs.cmd-check.outputs.commands) }} + container: + image: node:20 + steps: + - uses: paritytech/cmd-action/run@parse-comment + with: + branch: ${{ needs.cmd-check.outputs.branch }} + command: ${{ matrix.command }} + cmd: needs: [cmd-check] continue-on-error: true