feat(logs): capture request/response payloads and redesign log viewer #132
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build-and-smoke: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Install Linux system deps | |
| run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install -y --no-install-recommends \ | |
| pkg-config libssl-dev | |
| - name: Build webui | |
| run: | | |
| pnpm -C webui install --frozen-lockfile | |
| pnpm -C webui build | |
| - name: Cargo check | |
| run: cargo check --workspace --exclude nyro-desktop | |
| - name: Build nyro-server | |
| run: cargo build -p nyro-server | |
| - name: Run smoke tests | |
| run: python3 scripts/smoke/server_smoke.py |