This repository has been archived by the owner on Jan 30, 2025. It is now read-only.
Update dependency @vitejs/plugin-vue to v5 #688
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: build backend | |
on: | |
push: | |
branches-ignore: | |
- 'dev' | |
- 'main' | |
paths: | |
- 'praktikumsplaner-backend/**' | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
build-maven: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build with Maven | |
run: mvn --batch-mode --update-snapshots --no-transfer-progress -f praktikumsplaner-backend/pom.xml verify |