fix(codex-hooks): keep git root lookup live #24
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 Skills | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check Out Repository | |
| uses: actions/checkout@v4 | |
| - name: Set Up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Set Up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install ripgrep | |
| # Required by skills/ripgrep/scripts/probe_ripgrep.py, which shells | |
| # out to `rg --version` during validation. ubuntu-latest does not | |
| # ship ripgrep preinstalled. | |
| run: sudo apt-get update && sudo apt-get install -y ripgrep | |
| - name: Validate Skills | |
| shell: bash | |
| run: bash scripts/validate-all-skills.sh |