Skip to content

Bump vite from 6.2.1 to 6.4.1 #155

Bump vite from 6.2.1 to 6.4.1

Bump vite from 6.2.1 to 6.4.1 #155

Workflow file for this run

name: Lint
on:
pull_request:
branches: ["*"]
jobs:
lint:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linter
run: pnpm run lint
- name: Check formatting
run: pnpm run ci:format
- name: Check types
run: pnpm run type-check