feat: update forge-install scripts to improve Python detection and er… #8
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 Site-First Branch | |
| on: | |
| push: | |
| branches: [site-first] | |
| paths: | |
| - 'registry/**' | |
| - 'scripts/**' | |
| - 'site/**' | |
| - 'skills/scientific-visualization/**' | |
| - 'package.json' | |
| pull_request: | |
| branches: [site-first] | |
| paths: | |
| - 'registry/**' | |
| - 'scripts/**' | |
| - 'site/**' | |
| - 'skills/scientific-visualization/**' | |
| - 'package.json' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.12.0 | |
| cache: npm | |
| cache-dependency-path: site/package-lock.json | |
| - run: npm ci --prefix site | |
| - run: npm run ci:validate | |
| - run: bash scripts/tests/forge-install-local-registry.sh |