chore: add Gitea CI workflow (build + lint + test)
CI / check (pull_request) Failing after 1m18s

小橘 🍊(NEKO Team)
This commit is contained in:
2026-06-04 09:36:51 +00:00
parent b3879c583a
commit 6b9ebd1796
+31
View File
@@ -0,0 +1,31 @@
name: CI
on:
push:
branches: ['*']
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'pnpm'
- run: pnpm install
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run check
- name: Test
run: pnpm run test