✨ feat(headroom): Add opt-in proxy routing extension #247
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: Bootstrap | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| bootstrap-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - uses: jdx/mise-action@v4 | |
| with: | |
| install: false | |
| - name: Install pi | |
| run: | | |
| PI_VERSION="$(node -p 'require("./package.json").devDependencies["@earendil-works/pi-coding-agent"]')" | |
| npm install -g "@earendil-works/pi-coding-agent@$PI_VERSION" | |
| - name: Run bootstrap script | |
| run: ./scripts/install.sh | |
| - name: Show installed pi packages | |
| run: pi list |