initial commit

This commit is contained in:
2025-03-10 04:39:31 +01:00
commit d455cebc29
12 changed files with 1486 additions and 0 deletions

12
.github/workflows/ci.yaml vendored Normal file
View File

@@ -0,0 +1,12 @@
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Deps
run: npm install -g pnpm && pnpm install
- name: Typecheck & Lint
run: pnpm check