Skip to content

Bump vite from 4.4.9 to 4.5.0 #5

Bump vite from 4.4.9 to 4.5.0

Bump vite from 4.4.9 to 4.5.0 #5

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧 # use the lockfile for reproducibility, run typechecking, then output to build folder
run: |
yarn install --frozen-lockfile
yarn run check
yarn build