Skip to content

Commit dabbb1c

Browse files
committed
chore: clean up project
1 parent b682388 commit dabbb1c

File tree

893 files changed

+3515
-5493
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

893 files changed

+3515
-5493
lines changed

.editorconfig

-10
This file was deleted.

.eslintrc.cjs

-40
This file was deleted.

.github/workflows/actions/setup.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Setup and install"
2+
description: "Common setup steps for Actions"
3+
4+
runs:
5+
using: composite
6+
steps:
7+
- uses: pnpm/action-setup@v3
8+
- uses: actions/setup-node@v4
9+
with:
10+
node-version: 20
11+
cache: "pnpm"
12+
13+
- shell: bash
14+
run: pnpm install

.github/workflows/ci.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# this workflow will run on every pr to make sure the project is following the guidelines
2+
3+
# after labeler, run other actions with strict permissions
4+
name: CI
5+
6+
on:
7+
pull_request:
8+
branches: ["*"]
9+
merge_group:
10+
11+
12+
jobs:
13+
lint:
14+
runs-on: ubuntu-latest
15+
name: Run eslint
16+
steps:
17+
- uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
- uses: ./.github/actions/setup
21+
22+
- run: pnpm lint
23+
24+
format:
25+
runs-on: ubuntu-latest
26+
name: Run prettier
27+
steps:
28+
- uses: actions/checkout@v4
29+
with:
30+
fetch-depth: 0
31+
- uses: ./.github/actions/setup
32+
33+
- run: pnpm format:check
34+
35+
tsc:
36+
runs-on: ubuntu-latest
37+
name: Run Typechecker
38+
steps:
39+
- uses: actions/checkout@v4
40+
with:
41+
fetch-depth: 0
42+
- uses: ./.github/actions/setup
43+
44+
- run: pnpm typecheck
45+
46+
build-www:
47+
runs-on: ubuntu-latest
48+
name: Build and Check Astro
49+
steps:
50+
- uses: actions/checkout@v4
51+
with:
52+
fetch-depth: 0
53+
- uses: ./.github/actions/setup
54+
55+
- run: pnpm build:www

.husky/commit-msg

-4
This file was deleted.

.husky/pre-commit

-4
This file was deleted.

apps/web/.prettierignore

-2
This file was deleted.

apps/web/content/components/overlay/index.mdx

-5
This file was deleted.

apps/web/postcss.config.cjs

-1
This file was deleted.

apps/web/src/components/component-preview/component-preview-client.tsx

-70
This file was deleted.

apps/web/src/components/component-preview/index.tsx

-1
This file was deleted.

apps/web/src/components/component-source.tsx

-38
This file was deleted.

apps/web/src/components/docs/doc-card.tsx

-137
This file was deleted.

0 commit comments

Comments
 (0)