chore(deps): bump the minor group across 5 directories with 8 updates #603
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: Framework Integration Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled] | |
| workflow_dispatch: | |
| inputs: | |
| force-all: | |
| description: 'Run all framework tests regardless of changes' | |
| type: boolean | |
| default: false | |
| permissions: | |
| contents: read | |
| jobs: | |
| detect-integrations: | |
| name: Detect Changed Integrations | |
| runs-on: ubuntu-latest | |
| permissions: {} | |
| outputs: | |
| any-changed: ${{ steps.detect.outputs.any-changed }} | |
| integrations: ${{ steps.detect.outputs.integrations }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Detect changed integrations | |
| id: detect | |
| run: | | |
| ARGS="" | |
| if [[ "${{ github.event.inputs.force-all }}" == "true" ]] || [[ "${{ contains(github.event.pull_request.labels.*.name, 'framework-tests') }}" == "true" ]]; then | |
| ARGS="--all" | |
| elif [[ "${{ github.head_ref }}" == "changeset-release/main" ]]; then | |
| ARGS="--release-pr" | |
| fi | |
| bun run scripts/detect-changed-integrations.ts $ARGS | |
| build: | |
| name: Build Libraries | |
| needs: detect-integrations | |
| if: needs.detect-integrations.outputs.any-changed == 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Cache bun dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.bun/install/cache | |
| key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }} | |
| restore-keys: | | |
| bun-${{ runner.os }}- | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24.x' | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Enable turborepo build cache | |
| uses: rharkor/caching-for-turbo@v2.3.11 | |
| - name: Build libraries | |
| run: bun run build:libs | |
| - name: Upload built repo for framework tests | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: built-repo | |
| path: | | |
| packages/*/dist/ | |
| packages/integrations/*/dist/ | |
| retention-days: 1 | |
| test: | |
| name: Framework Tests (${{ matrix.integration }}) | |
| needs: [detect-integrations, build] | |
| if: needs.detect-integrations.outputs.any-changed == 'true' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| integration: ${{ fromJson(needs.detect-integrations.outputs.integrations) }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Cache bun dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.bun/install/cache | |
| key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }} | |
| restore-keys: | | |
| bun-${{ runner.os }}- | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24.x' | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v5 | |
| with: | |
| version: 10 | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Download built libraries | |
| uses: actions/download-artifact@v8 | |
| with: | |
| name: built-repo | |
| path: packages/ | |
| - name: Run ${{ matrix.integration }} framework tests | |
| run: cd framework-tests && bun install && bun run test -- --reporter=verbose frameworks/${{ matrix.integration }}/ | |
| timeout-minutes: 15 | |
| # env: | |
| # FRAMEWORK_TEST_VERBOSE: '1' |