build(deps): bump prettier from 3.3.3 to 3.4.0 in /model-api-gen-gradle-test/vue-integration #2949
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: MPS compatibility | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: {} | |
# allow manual execution just in case | |
workflow_dispatch: | |
jobs: | |
build-mps-components: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
version: | |
- "2021.1" | |
- "2021.2" | |
- "2021.3" | |
- "2022.2" | |
- "2022.3" | |
- "2023.2" | |
- "2023.3" | |
- "2024.1" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Build with ${{ matrix.version }} | |
run: >- | |
./gradlew --build-cache | |
:bulk-model-sync-mps:build | |
:metamodel-export:build | |
:mps-model-adapters:build | |
:mps-model-adapters-plugin:build | |
-Pmps.version.major=${{ matrix.version }} |