This repository was archived by the owner on Oct 22, 2025. It is now read-only.
add script to update new major #10
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: Homebrew Installation Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test-installation: | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| version: ['', '@20'] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Homebrew | |
| run: | | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $HOME/.zprofile | |
| eval "$(/opt/homebrew/bin/brew shellenv)" | |
| - name: Tap nrwl/nx | |
| run: | | |
| brew tap nrwl/nx | |
| - name: Checkout PR branch in brew repository | |
| if: github.event_name == 'pull_request' | |
| run: | | |
| cd "$(brew --repository nrwl/nx)" | |
| git fetch origin ${{ github.head_ref }} | |
| git checkout ${{ github.head_ref }} | |
| - name: Test Nx installation | |
| run: | | |
| brew install nx${{ matrix.version }} | |
| nx --version | |
| brew uninstall nx${{ matrix.version }} |