chore(deps): bump the production group across 1 directory with 2 updates #370
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: 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 |