Try PR Template #13
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: verify frontend pull request | |
on: | |
pull_request: | |
paths: | |
- 'frontend/**' | |
jobs: | |
checkout_and_verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: mvn verify | |
run: mvn --batch-mode --update-snapshots --no-transfer-progress -f frontend/pom.xml verify |