Files
modelstudioai__cli/.github/workflows/ci.yml
T
若麒 cdf211648c chore(ci): upgrade actions to v6 for Node 24 compatibility
GitHub will force Node.js 24 for all actions starting June 16, 2026.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-06-05 10:50:57 +08:00

33 lines
578 B
YAML

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
check:
name: lint + typecheck + test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: "22"
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm -r --filter "./packages/*" build
- run: pnpm run check
- run: pnpm test