Skip to content

Merge pull request #1248 from dbelob/dependabot/npm_and_yarn/react-ap… #4286

Merge pull request #1248 from dbelob/dependabot/npm_and_yarn/react-ap…

Merge pull request #1248 from dbelob/dependabot/npm_and_yarn/react-ap… #4286

Workflow file for this run

name: Build
on: [ push, pull_request ]
jobs:
build:
if: ${{ !((github.event_name == 'push') && (github.actor == 'dependabot[bot]')) }}
runs-on: ubuntu-latest
steps:
- name: Update Google Chrome
run: |
sudo apt-get update
sudo apt-get --only-upgrade install google-chrome-stable
google-chrome --version
- name: Checkout code
uses: actions/checkout@v6
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'oracle'
java-version: 25
- name: Cache Maven packages
uses: actions/cache@v5
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B clean package
- name: Test coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}