Skip to content

chore(deps): bump vitest from 4.1.9 to 4.1.10 #790

chore(deps): bump vitest from 4.1.9 to 4.1.10

chore(deps): bump vitest from 4.1.9 to 4.1.10 #790

Workflow file for this run

name: Lint and Format Check
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
lint:
name: Lint and Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '24.18.0'
- name: Setup pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
with:
version: 11.9.0
- name: Install addlicense
run: |
curl -sL https://github.com/google/addlicense/releases/download/v1.2.0/addlicense_v1.2.0_Linux_x86_64.tar.gz | tar xz -C /usr/local/bin addlicense
chmod +x /usr/local/bin/addlicense
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint check
run: pnpm run lint:check
- name: Run Prettier check
run: pnpm run format:check
- name: Check license headers
run: |
addlicense -check -f scripts/header_template.txt \
--ignore "packages/shadcn/src/components/ui/**" \
--ignore "**/dist/**" \
--ignore "**/node_modules/**" \
./packages/