chore(deps): bump the production group across 1 directory with 52 updates #423
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 Aidbox Client | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request_target: | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Install node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24 | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| working-directory: packages/aidbox-client | |
| - name: Activate Aidbox | |
| run: | | |
| cat > docker-compose.override.yml << EOF | |
| services: | |
| aidbox: | |
| environment: | |
| BOX_LICENSE: ${{ secrets.BOX_LICENSE }} | |
| EOF | |
| working-directory: packages/aidbox-client | |
| - name: Run aidbox | |
| run: docker compose up --wait | |
| working-directory: packages/aidbox-client | |
| - name: Run tests | |
| run: pnpm test | |
| working-directory: packages/aidbox-client |