Skip to content

Bump vite from 6.0.2 to 6.0.3 #4661

Bump vite from 6.0.2 to 6.0.3

Bump vite from 6.0.2 to 6.0.3 #4661

Workflow file for this run

name: CI
on: [ push, pull_request ]
defaults:
run:
shell: bash
jobs:
Server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
App:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.JS
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test