Skip to content

Bump webpack from 5.88.2 to 5.95.0 in /react-app #300

Bump webpack from 5.88.2 to 5.95.0 in /react-app

Bump webpack from 5.88.2 to 5.95.0 in /react-app #300

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
paths-ignore:
- README.md
- .gitignore
- .gitpod.yml
- LICENSE
pull_request:
branches: [ main ]
paths-ignore:
- README.md
- .gitignore
- .gitpod.yml
- LICENSE
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '17' ]
name: Build with Java ${{ matrix.Java }}
steps:
- uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: maven-settings
uses: s4u/[email protected]
with:
servers: '[{"id": "github", "username": "${{ secrets.MAVEN_REGISTRY_USERNAME }}", "password": "${{ secrets.MAVEN_REGISTRY_TOKEN }}"}]'
githubServer: false
- name: Maven build
run: mvn clean package