Skip to content

feat(agentcore): add Codex CLI with Bedrock inference #610

feat(agentcore): add Codex CLI with Bedrock inference

feat(agentcore): add Codex CLI with Bedrock inference #610

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
- aidlc-v2
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: test-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm test