Fix side panel closing issue when clicking inside the panel content area #2734
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: Validation | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-links: | |
| if: false # https://github.com/UmbrellaDocs/action-linkspector/issues/62 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run linkspector | |
| uses: umbrelladocs/action-linkspector@v1 | |
| with: | |
| config_file: .github/.linkspector.yml | |
| reporter: github-pr-check | |
| filter_mode: nofilter | |
| fail_level: any | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - uses: gradle/actions/setup-gradle@v6 | |
| with: | |
| cache-disabled: true | |
| - name: Check version compatibility | |
| run: ./gradlew :tools:idea-plugin:checkVersionCompatibility | |
| - name: Run build | |
| run: ./gradlew build |