Skip to content

chore: run vitest with rolldown-vite #90

chore: run vitest with rolldown-vite

chore: run vitest with rolldown-vite #90

Workflow file for this run

name: CI
permissions:
contents: read
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node.js
uses: actions/setup-node@v5
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Typecheck
run: pnpm run typecheck && pnpm run dev:typecheck
- name: Test
run: pnpm run test
- name: Build
run: pnpm run build
- name: Publint
run: pnpm run publint