[lexical] Bug Fix: Correct children fast-path text size for cross-parent-moved elements #6783
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: Lexical Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'examples/**' | |
| - 'packages/lexical-website/**' | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| merge_group: | |
| permissions: {} | |
| concurrency: | |
| # Only cancel an in-progress run when a newer commit lands on the same ref. | |
| # Other events (labeled, reopened, manual approval re-runs, etc.) get a | |
| # distinct group so they never cancel a run that is already underway. | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.event_name == 'pull_request' && github.event.action != 'synchronize' && github.run_id || 'commit' }} | |
| cancel-in-progress: true | |
| jobs: | |
| core-tests: | |
| uses: ./.github/workflows/call-core-tests.yml | |
| e2e-tests: | |
| if: github.repository_owner == 'facebook' | |
| uses: ./.github/workflows/call-e2e-canary-tests.yml |