Skip to content

Bump vite from 5.4.2 to 5.4.3 in /ui #716

Bump vite from 5.4.2 to 5.4.3 in /ui

Bump vite from 5.4.2 to 5.4.3 in /ui #716

Workflow file for this run

on: [pull_request]
name: Test rust
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Add required index.html
run: |
touch ./static/index.html
- uses: actions-rs/cargo@v1
with:
command: build