Skip to content

fix(test): bump vitest testTimeout to 30s to unblock CI #212

fix(test): bump vitest testTimeout to 30s to unblock CI

fix(test): bump vitest testTimeout to 30s to unblock CI #212

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches-ignore: [main]
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Test
run: npm run test:coverage
- name: Build
run: npm run build