Popup: template wrapper element inherits maxHeight and minHeight styles from parent when popup dimensions are auto (T1259619) #17415
Workflow file for this run
This file contains 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: Paths length check | |
concurrency: | |
group: wf-${{github.event.pull_request.number || github.sha}}-${{github.workflow}} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
paths-ignore: | |
- 'apps/**/*.md' | |
push: | |
branches: [25_1] | |
env: | |
MAX_LENGTH: 170 | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_TOKEN }} | |
NX_SKIP_NX_CACHE: ${{ (github.event_name != 'pull_request' || contains( github.event.pull_request.labels.*.name, 'skip-cache')) && 'true' || 'false' }} | |
jobs: | |
checks: | |
runs-on: devextreme-shr2 | |
timeout-minutes: 5 | |
steps: | |
- name: Get sources | |
uses: actions/checkout@v4 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v42 | |
with: | |
separator: "\" \"" | |
- name: Check all changed files | |
run: | | |
RESULT='' | |
for file in "${{ steps.changed-files.outputs.all_changed_files }}"; do | |
if (( ${#file} > $MAX_LENGTH )); then RESULT+="$file\n"; fi; | |
done | |
if (( ${#RESULT} )); then printf "The following filenames are longer than $MAX_LENGTH characters:\n${RESULT}" && exit 1; fi; | |
notify: | |
runs-on: devextreme-shr2 | |
name: Send notifications | |
needs: [checks] | |
if: github.event_name != 'pull_request' && contains(needs.*.result, 'failure') | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DevExpress/github-actions/send-teams-notification@v1 | |
with: | |
hook_url: ${{secrets.TEAMS_ALERT}} | |
bearer_token: ${{secrets.GITHUB_TOKEN}} | |
specific_repo: DevExpress/DevExtreme |