Skip to content

chore: bump to v1.2.0 #26

chore: bump to v1.2.0

chore: bump to v1.2.0 #26

Workflow file for this run

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