Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 0 additions & 57 deletions .github/workflows/ci-master.yml

This file was deleted.

43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:

permissions:
contents: read

jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v6

- uses: pnpm/action-setup@v4

- uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Format check
run: pnpm run format:check

- name: Lint
run: pnpm run lint

- name: Type check
run: pnpm run types:check

- name: Build
run: pnpm run build
Comment thread
LucHeart marked this conversation as resolved.
Fixed
37 changes: 31 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
site
/.vscode
.cache
node_modules
docs/.vitepress/dist
docs/.vitepress/cache
# deps
/node_modules

# generated content
.source

# test & build
/coverage
/.next/
/out/
/build
*.tsbuildinfo


# misc
.DS_Store
*.pem
/.pnp
.pnp.js
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# others
.env*.local
.vercel
next-env.d.ts

# tool caches
.cache/
.claude/
4 changes: 4 additions & 0 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": []
}
28 changes: 0 additions & 28 deletions Dockerfile

This file was deleted.

14 changes: 14 additions & 0 deletions cli.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "node_modules/@fumadocs/cli/dist/schema.json",
"aliases": {
"uiDir": "./components/ui",
"componentsDir": "./components",
"layoutDir": "./layouts",
"cssDir": "./styles",
"libDir": "./lib"
},
"baseDir": "src",
"uiLibrary": "radix-ui",
"framework": "next",
"commands": {}
}
37 changes: 0 additions & 37 deletions docs/.vitepress/config.ts

This file was deleted.

60 changes: 0 additions & 60 deletions docs/.vitepress/nav.ts

This file was deleted.

Loading
Loading