Skip to content

Bump vite from 4.4.5 to 4.5.3 in /bigtop-manager-ui #6

Bump vite from 4.4.5 to 4.5.3 in /bigtop-manager-ui

Bump vite from 4.4.5 to 4.5.3 in /bigtop-manager-ui #6

Workflow file for this run

on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: ['17', '21']
services:
db:
image: mysql:8.0
ports:
- 3306:3306
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: bigtop_manager
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- run: ./mvnw clean install -B -Djava.version=${{ matrix.java }}