Skip to content

feat(awn): implement daemon stop, fix install.sh #331

feat(awn): implement daemon stop, fix install.sh

feat(awn): implement daemon stop, fix install.sh #331

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- if: "!startsWith(github.head_ref, 'changeset-release/')"
run: npm ci
- if: "!startsWith(github.head_ref, 'changeset-release/')"
run: npm --prefix packages/agent-world-sdk install
- if: "!startsWith(github.head_ref, 'changeset-release/')"
run: npm --prefix gateway install
- if: "!startsWith(github.head_ref, 'changeset-release/')"
run: npm run build
- if: "!startsWith(github.head_ref, 'changeset-release/')"
run: npm --prefix packages/agent-world-sdk run build
- if: "!startsWith(github.head_ref, 'changeset-release/')"
run: node --test test/*.test.mjs
test-rust:
name: test (awn-cli)
runs-on: ubuntu-latest
if: "!startsWith(github.head_ref, 'changeset-release/')"
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: packages/awn-cli
- run: cargo test --manifest-path packages/awn-cli/Cargo.toml