feat:init

This commit is contained in:
2025-09-09 11:22:17 +08:00
commit d6457f59f7
155 changed files with 36102 additions and 0 deletions

21
.github/workflows/coverage.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: coverage CI
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- run: echo ${{github.ref}}
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run test:coverage
- uses: codecov/codecov-action@v5