Add publish and create-mr workflow steps for end-to-end local execution #499
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: Validate script syntax | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.3" | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: Validate script syntax | |
| run: ./scripts/validate-plugins.sh | |
| - name: Check deps.json is up to date | |
| run: | | |
| python3 scripts/scan_deps.py | |
| git diff --exit-code scripts/deps.json |