Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork232
fix(image-cropper): the controlledzoom prop is not functioning as expected#8320
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:Quality | |
| on: | |
| push: | |
| branches: | |
| -main | |
| pull_request: | |
| branches: | |
| -main | |
| concurrency: | |
| group:${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress:${{ github.ref != 'refs/heads/main' }} | |
| env: | |
| FORCE_COLOR:2 | |
| TURBO_TOKEN:${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM:${{ secrets.TURBO_TEAM }} | |
| jobs: | |
| tests: | |
| name:Unit Tests | |
| runs-on:ubuntu-latest | |
| steps: | |
| -name:Checkout | |
| uses:actions/checkout@v5 | |
| -name:Install | |
| uses:./.github/composite-actions/install | |
| -name:Run tests | |
| run:pnpm test | |
| e2e: | |
| name:End-to-end Tests | |
| runs-on:ubuntu-latest | |
| strategy: | |
| fail-fast:false | |
| matrix: | |
| shard:[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] | |
| steps: | |
| -name:Checkout | |
| uses:actions/checkout@v5 | |
| -name:Install | |
| uses:./.github/composite-actions/install | |
| -name:Cache Playwright Browsers | |
| uses:actions/cache@v4 | |
| id:playwright-cache | |
| with: | |
| path:~/.cache/ms-playwright | |
| key:${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| -name:Install Playwright Browsers | |
| if:steps.playwright-cache.outputs.cache-hit != 'true' | |
| run:pnpm playwright install --with-deps | |
| -name:Run tests | |
| run:pnpm playwright test --shard=${{ matrix.shard }}/${{ strategy.job-total }} | |
| env: | |
| FRAMEWORK:react | |
| eslint: | |
| name:ESLint | |
| runs-on:ubuntu-latest | |
| steps: | |
| -name:Checkout | |
| uses:actions/checkout@v5 | |
| -name:Install | |
| uses:./.github/composite-actions/install | |
| -name:Run ESLint | |
| run:pnpm lint | |
| env: | |
| NODE_OPTIONS:"--max-old-space-size=4096" | |
| types: | |
| name:TypeScript | |
| runs-on:ubuntu-latest | |
| steps: | |
| -name:Checkout | |
| uses:actions/checkout@v5 | |
| -name:Install | |
| uses:./.github/composite-actions/install | |
| -name:Run TypeScript type check | |
| run:pnpm typecheck | |
| checks: | |
| name:Check for various issues | |
| runs-on:ubuntu-latest | |
| steps: | |
| -name:Checkout | |
| uses:actions/checkout@v5 | |
| -name:Install | |
| uses:./.github/composite-actions/install | |
| -name:Check type exports | |
| run:pnpm check-type-exports |