chore(ci): CI workflow and update scripts (#28)

This commit is contained in:
DigHuang
2026-02-09 22:08:47 -08:00
committed by GitHub
Unverified
parent 7a9fd7fc0f
commit 3379229914
3 changed files with 59 additions and 120 deletions

57
.github/workflows/check.yml vendored Normal file
View File

@@ -0,0 +1,57 @@
# ClawX CI Workflow
# Runs on pull requests (main/develop)
name: Check and Build
on:
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linter
run: pnpm run lint
- name: Run typecheck
run: pnpm run typecheck
- name: Run tests
run: pnpm run test
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build:vite