feat: bump dependencies in back and front #22
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: Server API CI | |
| on: | |
| workflow_dispatch: | |
| # run for all pushes, not only main | |
| push: | |
| branches: | |
| - '**' | |
| paths: | |
| - 'server/**/*.java' | |
| - 'server/**/*.xml' | |
| - 'server/pom.xml' | |
| jobs: | |
| run-checks: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '25' | |
| cache: 'maven' | |
| - name: Run Check Style | |
| working-directory: ./server | |
| run: ./mvnw --no-transfer-progress checkstyle:check -Dcheckstyle.skip=false | |
| - name: Run build | |
| working-directory: ./server | |
| run: ./mvnw --no-transfer-progress clean compile -DskipTests | |
| - name: Run tests | |
| working-directory: ./server | |
| run: ./mvnw --no-transfer-progress clean verify -P tests --file pom.xml |