chore(deps-dev): bump the npm-minor group across 1 directory with 6 updates #968
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 | |
| on: | |
| push: | |
| branches: | |
| pull_request: | |
| env: | |
| MVN: mvn --batch-mode | |
| jobs: | |
| lint-npm: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: 'package.json' | |
| cache: 'npm' | |
| - run: npm ci | |
| - run: npm run lint:scss --silent | |
| - run: npm run lint:js --silent | |
| lint-java: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '25' | |
| cache: 'maven' | |
| - name: CheckStyle | |
| run: $MVN checkstyle:check | |
| - name: SpotBugs | |
| if: success() || failure() | |
| run: $MVN compile spotbugs:check | |
| tests-java: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '25' | |
| cache: 'maven' | |
| - name: Run tests | |
| run: $MVN --show-version test |