name: Java CI on: [push, pull_request] jobs: build: runs-on: ubuntu-20.04 name: OpenJDK steps: - uses: actions/checkout@v2 - name: Set up JDK 17 uses: actions/setup-java@v3 with: distribution: 'temurin' java-version: 17 cache: 'maven' - name: Setup Node.JS uses: actions/setup-node@v3 with: node-version: '16' cache: 'npm' - run: npm install - name: Run tests run: mvn package - uses: mikepenz/action-junit-report@v2 with: report_paths: '**/target/surefire-reports/TEST-*.xml' github_token: ${{ secrets.GITHUB_TOKEN }}