Skip to content

Bump vite from 4.5.3 to 4.5.5 #21

Bump vite from 4.5.3 to 4.5.5

Bump vite from 4.5.3 to 4.5.5 #21

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 19.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8.5.1
- name: Install
run: pnpm install
- name: Build
run: pnpm build
env:
NODE_ENV: production
- name: Test
run: pnpm test