chore(deps): bump io.sentry:sentry-log4j2 from 6.30.0 to 6.31.0 #34
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@v3 | |
with: | |
node-version: 18 | |
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@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'maven' | |
server-id: github-l3s-learnweb | |
- 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 |