[Studio UI] Add aria-expanded to tree nodes #976
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: "Studio Frontend Build" | |
| on: | |
| push: | |
| paths: | |
| - "assets/**" | |
| pull_request: | |
| paths: | |
| - "assets/**" | |
| workflow_dispatch: | |
| # Builds cancel superseded runs per branch; the reusable workflow serializes its | |
| # own write (commit) jobs. | |
| concurrency: | |
| group: studio-frontend-build-${{ github.head_ref || github.ref_name }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: write | |
| jobs: | |
| studio-frontend-build: | |
| permissions: | |
| contents: write | |
| uses: pimcore/workflows-collection-public/.github/workflows/reusable-studio-frontend-build.yaml@main | |
| with: | |
| working-directory: ./assets | |
| node-version: "24" | |
| build-script: ci-build | |
| build-output-path: ./build-dist/ | |
| api-client: true | |
| test: true |