Skip to content

chore(deps-dev): bump vitest from 4.1.0 to 4.1.4 #150

chore(deps-dev): bump vitest from 4.1.0 to 4.1.4

chore(deps-dev): bump vitest from 4.1.0 to 4.1.4 #150

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
paths-ignore:
- '**/*.md'
- LICENSE
- .github/dependabot.yml
permissions:
contents: read
env:
NEXT_TELEMETRY_DISABLED: 1
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: npm
- run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Type check
run: npx tsc --noEmit
- name: Build
run: npm run build