Add 'What is a Gateway Server?' foundational explanation to Chapter 2 #11
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: Install Smoke | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| install-smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout CLI | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v3 | |
| with: | |
| version: 10 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Install pnpm deps (minimal) | |
| run: pnpm install --ignore-scripts --frozen-lockfile | |
| - name: Run installer docker tests | |
| env: | |
| CLAWDBOT_INSTALL_URL: https://clawd.bot/install.sh | |
| CLAWDBOT_INSTALL_CLI_URL: https://clawd.bot/install-cli.sh | |
| CLAWDBOT_NO_ONBOARD: "1" | |
| CLAWDBOT_INSTALL_SMOKE_SKIP_CLI: "1" | |
| CLAWDBOT_INSTALL_SMOKE_SKIP_NONROOT: ${{ github.event_name == 'pull_request' && '1' || '0' }} | |
| CLAWDBOT_INSTALL_SMOKE_PREVIOUS: "2026.1.11-4" | |
| run: pnpm test:install:smoke |