feat: run unity_execute_csharp from a saved script file with args #14
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 marketplace | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master, main] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - run: node .github/scripts/validate-marketplace.mjs | |
| - run: npm pack --dry-run --json > npm-pack.json | |
| - name: Verify plugin bundle is published | |
| run: node -e "const p=require('./npm-pack.json')[0];if(!p.files.some(f=>f.path==='Plugins~/dotcraft-unity/skills/dotcraft-unity/SKILL.md'))process.exit(1)" |