fix(core): fix dynamicTitle: false not taking effect in the toolbar. #692
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: nx | |
| on: | |
| push: | |
| branches: | |
| - next | |
| pull_request: | |
| types: [opened, synchronize, labeled, reopened] | |
| permissions: | |
| actions: read | |
| contents: read | |
| env: | |
| NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
| jobs: | |
| nx: | |
| if: > | |
| (github.event_name == 'pull_request' && | |
| (contains(github.event.pull_request.labels.*.name, 'ci:normal') || | |
| contains(github.event.pull_request.labels.*.name, 'ci:merged') || | |
| contains(github.event.pull_request.labels.*.name, 'ci:daily')) | |
| ) || (github.event_name == 'push' && github.ref == 'refs/heads/next') | |
| runs-on: ubuntu-latest | |
| env: | |
| ALL_TASKS: compile,check,knip,test,pretty-docs,lint,sandbox,build,e2e-tests,e2e-tests-dev,test-runner,vitest-integration,check-sandbox,e2e-ui,jest,vitest,playwright-ct,cypress | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| filter: tree:0 | |
| fetch-depth: 0 | |
| - run: npx nx@latest start-ci-run --distribute-on="./.nx/workflows/distribution-config.yaml" --stop-agents-after="$ALL_TASKS" | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'yarn' | |
| - run: yarn install --immutable | |
| - uses: nrwl/nx-set-shas@v4 | |
| # --- PRs --- | |
| - if: github.event_name == 'pull_request' && | |
| contains(github.event.pull_request.labels.*.name, 'ci:normal') | |
| run: yarn nx run-many -t $ALL_TASKS -c production -p="tag:ci:normal" | |
| - if: github.event_name == 'pull_request' && | |
| contains(github.event.pull_request.labels.*.name, 'ci:merged') | |
| run: yarn nx run-many -t $ALL_TASKS -c production -p="tag:ci:normal,tag:ci:merged" | |
| - if: github.event_name == 'pull_request' && | |
| contains(github.event.pull_request.labels.*.name, 'ci:daily') | |
| run: yarn nx run-many -t $ALL_TASKS -c production -p="tag:ci:normal,tag:ci:merged,tag:ci:daily" | |
| # --- Pushes --- | |
| - if: github.event_name == 'push' && | |
| github.ref == 'refs/heads/next' | |
| run: yarn nx run-many -t $ALL_TASKS -c production -p="tag:ci:normal,tag:ci:merged" |