Skip to content

Bump vite from 4.3.3 to 4.5.5 #234

Bump vite from 4.3.3 to 4.5.5

Bump vite from 4.3.3 to 4.5.5 #234

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install
run: yarn install --immutable
# `yarn build` does not type-check the tests
- name: tsc
run: yarn tsc
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Lint
run: yarn lint