Skip to content

UI lib and components, fix database root #10

UI lib and components, fix database root

UI lib and components, fix database root #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Check formatted
run: pnpm turbo check
- name: Lint
run: pnpm turbo lint
- name: Type check
run: pnpm turbo type-check
- name: Test
run: pnpm turbo test