Skip to content

Bump axios from 1.13.3 to 1.13.4 in /react-application-deployment-web #4284

Bump axios from 1.13.3 to 1.13.4 in /react-application-deployment-web

Bump axios from 1.13.3 to 1.13.4 in /react-application-deployment-web #4284

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 }}