Remove legacy ~/devkit migration and dead pm2 converter; document can… #23
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: CLI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| cli-tests: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Ensure jq is installed | |
| run: | | |
| command -v jq >/dev/null 2>&1 || brew install jq | |
| - name: Ensure caddy is installed | |
| run: | | |
| command -v caddy >/dev/null 2>&1 || brew install caddy | |
| - name: Syntax check CLI and tests | |
| run: | | |
| bash -n bin/devkit | |
| bash -n install.sh | |
| bash -n test/test_registry.sh | |
| bash -n test/test_install.sh | |
| - name: Run CLI integration suite | |
| run: bash test/test_registry.sh | |
| - name: Run installer smoke test | |
| run: bash test/test_install.sh |