feat: add convert-video, shared bootstrap, common lib, fix sast brew bug #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| workflow_call: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.claude-plugin/**' | |
| - 'plugins/slack-publish/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| shell-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install shellcheck | |
| run: sudo apt-get install -y shellcheck | |
| - name: Lint | |
| run: make lint | |
| shell-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install bats | |
| run: sudo apt-get install -y bats | |
| - name: Test | |
| run: make test |