Skip to content

Bump vite from 4.5.0 to 4.5.2 #38

Bump vite from 4.5.0 to 4.5.2

Bump vite from 4.5.0 to 4.5.2 #38

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false
- name: Install dependencies
run: pnpm install
# - name: Lint
# run: pnpm lint
# - name: Test
# run: pnpm test --ci --coverage --maxWorkers=2
- name: Build
run: pnpm run build