chore: bump to v1.2.0 #26
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: Test Formula | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Tap and install | |
| run: | | |
| brew tap node9-ai/node9 https://github.com/node9-ai/homebrew-node9 | |
| brew install node9-ai/node9/node9 | |
| - name: Verify install | |
| run: | | |
| # binary exists and is executable | |
| which node9 | |
| # version output matches formula version | |
| node9 --version | |
| # core CLI commands are accessible | |
| node9 --help | |
| # doctor runs without crashing (exit 0 not required — env may lack git) | |
| node9 doctor || true | |
| - name: Audit formula | |
| run: brew audit --strict node9-ai/node9/node9 |