Skip to content

Bump vite from 4.2.3 to 4.5.2 #49

Bump vite from 4.2.3 to 4.5.2

Bump vite from 4.2.3 to 4.5.2 #49

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build Workspace (Packages and App)
run: pnpm build
- name: Analyze Code and Style
run: pnpm lint:ci