Skip to content

ButtonGroup: button is displayed as active even if it wasn't clicked (T1222079) #25258

ButtonGroup: button is displayed as active even if it wasn't clicked (T1222079)

ButtonGroup: button is displayed as active even if it wasn't clicked (T1222079) #25258

name: Themebuilder and Styles tests
concurrency:
group: wf-${{github.event.pull_request.number || github.sha}}-${{github.workflow}}
cancel-in-progress: true
on:
pull_request:
push:
branches: [24_1]
jobs:
test:
runs-on: devextreme-shr2
timeout-minutes: 30
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Restore npm cache
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-modules
- name: Run npm install
run: npm install --no-audit --no-fund
- name: Build etalon bundles
working-directory: ./packages/devextreme
run: npx gulp style-compiler-themes-ci
- name: Build
working-directory: ./packages/devextreme-themebuilder
run: npm run build
- name: Run themebuilder tests (full set, node)
run: npm run test
working-directory: ./packages/devextreme-themebuilder
- name: Check styles for duplicate rules (generic)
working-directory: ./packages/devextreme
run: npx stylelint --config testing/styles/bundles-stylelint-config.json "artifacts/**/dx.light.css"
- name: Check styles for duplicate rules (material)
working-directory: ./packages/devextreme
run: npx stylelint --config testing/styles/bundles-stylelint-config.json "artifacts/**/dx.material.blue.light.css"
notify:
runs-on: devextreme-shr2
name: Send notifications
needs: [test]
if: github.event_name != 'pull_request' && contains(needs.*.result, 'failure')
steps:
- uses: actions/checkout@v4
- uses: DevExpress/github-actions/send-teams-notification@main
with:
hook_url: ${{secrets.TEAMS_ALERT}}
bearer_token: ${{secrets.GITHUB_TOKEN}}
specific_repo: DevExpress/DevExtreme