initial commit
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 27m7s

This commit is contained in:
kittentm 2026-05-12 21:05:12 +02:00
commit 97cbc930a0
No known key found for this signature in database
GPG key ID: AC43DFDBC1F44A91
23 changed files with 13243 additions and 0 deletions

34
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,34 @@
name: ci
on: push
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [22]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v6
- name: Install node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Typecheck
run: pnpm run typecheck