chore(deps): bump the maven-minor group across 1 directory with 14 up… #565
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: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
styles: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run lint:scss --silent | |
- run: npm run lint:js --silent | |
java: | |
runs-on: ubuntu-latest | |
env: | |
MVN: mvn --batch-mode | |
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: 'maven' | |
- name: Run Checkstyle check | |
run: $MVN checkstyle:check | |
- name: Run SpotBugs check | |
if: success() || failure() | |
run: $MVN compile spotbugs:check | |
- name: Run tests | |
if: success() || failure() | |
run: $MVN --show-version test |