fix: Support XHTML phrasing content in MathML token elements (#4924) #5167
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: CI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - '**' | |
| push: | |
| branches: | |
| - main | |
| - restructure | |
| - v11 | |
| jobs: | |
| filter_jobs: | |
| name: Filter jobs | |
| runs-on: ubuntu-latest | |
| outputs: | |
| jsChanged: ${{ steps.filter.outputs.jsChanged }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| # Should be kept in sync with the filter in the PR Reporter workflow | |
| predicate-quantifier: 'every' | |
| filters: | | |
| jsChanged: | |
| - '**/src/**/*.js' | |
| - '!devtools/src/devtools.js' | |
| compressed_size: | |
| name: Compressed Size | |
| needs: filter_jobs | |
| if: ${{ needs.filter_jobs.outputs.jsChanged == 'true' }} | |
| uses: ./.github/workflows/size.yml | |
| build_test: | |
| name: Build & Test | |
| needs: filter_jobs | |
| uses: ./.github/workflows/build-test.yml | |
| benchmarks: | |
| name: Benchmarks | |
| needs: build_test | |
| if: ${{ needs.filter_jobs.outputs.jsChanged == 'true' }} | |
| uses: ./.github/workflows/benchmarks.yml |