chore(release): promote agent-network 2.2.10-preview.3 → 2.2.10 lates… #558
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: Docker E2E Tests | |
| on: | |
| push: | |
| paths: | |
| - 'agent-network/**' | |
| - 'agent-node/**' | |
| - 'server/**' | |
| - 'channel/**' | |
| - 'tests/**' | |
| - '.github/workflows/**' | |
| pull_request: | |
| paths: | |
| - 'agent-network/**' | |
| - 'agent-node/**' | |
| - 'server/**' | |
| - 'tests/**' | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install agent-network dependencies | |
| working-directory: agent-network | |
| run: bun install --frozen-lockfile | |
| - name: Typecheck agent-network | |
| working-directory: agent-network | |
| run: bun tsc --noEmit | |
| - name: Build Docker E2E image | |
| run: docker build -t anet-e2e -f tests/Dockerfile . | |
| timeout-minutes: 10 | |
| - name: Run full regression (186 tests) | |
| run: docker run --rm anet-e2e /app/test-all.sh | |
| timeout-minutes: 5 |