Skip to content

build(deps-dev): bump vite from 6.0.9 to 6.2.0 in /web-app #71

build(deps-dev): bump vite from 6.0.9 to 6.2.0 in /web-app

build(deps-dev): bump vite from 6.0.9 to 6.2.0 in /web-app #71

Workflow file for this run

name: Build
on:
push:
permissions:
contents: write
jobs:
root:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Build
run: make root
web-app:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18.x", "20.x", "22.x", "23.x"]
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: make -C web-app
api-app:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: ["17", "21", "23"]
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Use Java ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java-version }}
- name: Build
run: make -C api-app