Skip to content

Bump vite from 6.4.1 to 6.4.2 #45

Bump vite from 6.4.1 to 6.4.2

Bump vite from 6.4.1 to 6.4.2 #45

Workflow file for this run

# Runs formatting, build, lint, type-check, and tests.
name: CI
on:
push:
branches: [main]
pull_request:
types:
- labeled
- unlabeled
- opened
- synchronize
- reopened
permissions:
contents: read
pull-requests: read
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version-file: .nvmrc
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Format
run: pnpm format:check
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Type check
run: pnpm type-check
- name: Tests
run: pnpm test