Improve README positioning and quick start #18
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| smoke: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Validate shell scripts | |
| run: | | |
| zsh -n scripts/dev-loop.sh | |
| zsh -n scripts/install-extension.sh | |
| zsh -n scripts/install-proxy.sh | |
| zsh -n scripts/reload-antigravity-windows.sh | |
| zsh -n scripts/toolkit-control.sh | |
| zsh -n scripts/uninstall-proxy.sh | |
| zsh -n scripts/verify-dev-loop.sh | |
| - name: Validate JavaScript syntax | |
| run: | | |
| node --check proxy/antigravity-cloudcode-proxy.js | |
| node --check extension/extension.js | |
| node --check scripts/generate-language-server-inventory.js | |
| - name: Validate Python syntax | |
| run: | | |
| python3 -m py_compile scripts/summarize-attempt-diagnostics.py | |
| - name: Package VSIX | |
| run: | | |
| cd extension | |
| npx @vscode/vsce package --allow-missing-repository |