Skip to content

fix: Also proxy URLs starting with @ for Vite itself #140

fix: Also proxy URLs starting with @ for Vite itself

fix: Also proxy URLs starting with @ for Vite itself #140

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
JAVA_VERSION: '23'
JAVA_DISTRO: 'temurin'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/checkout@v4
- name: 'Set up Java'
uses: actions/setup-java@v4
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRO }}
- name: 'Cache Maven packages'
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: 'Build'
run: ./mvnw -B -ntp --file pom.xml verify