refactor: simplify install.sh to print PATH guidance instead of modifying rc files #1
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: Test Install Script | |
| on: | |
| pull_request: | |
| paths: | |
| - 'install.sh' | |
| - 'e2e/test-install.sh' | |
| - '.github/workflows/test-install.yml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'install.sh' | |
| - 'e2e/test-install.sh' | |
| - '.github/workflows/test-install.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-install: | |
| name: Install script tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run install.sh tests | |
| run: sh e2e/test-install.sh |