fix(deps): update vue monorepo to v3.5.33 #1317
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: ✅ CI - PR Check with Maven Build | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| paths-ignore: | |
| - "frontend/**" | |
| jobs: | |
| test: | |
| name: PR Check - Maven Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: "temurin" | |
| java-version: "25" | |
| cache: "maven" | |
| - name: Set up Maven Repositories | |
| uses: s4u/maven-settings-action@v4.0.0 | |
| with: | |
| repositories: | | |
| [ | |
| { | |
| "id": "xwiki-releases", | |
| "name": "xwiki-releases", | |
| "url": "https://maven.xwiki.org/releases/", | |
| "snapshots": { | |
| "enabled": false | |
| } | |
| } | |
| ] | |
| - name: Build and Test | |
| run: mvn --batch-mode --update-snapshots install |