Skip to content

在各个包的 package.json 中添加测试脚本 #99

在各个包的 package.json 中添加测试脚本

在各个包的 package.json 中添加测试脚本 #99

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Generate source files
run: npx fumadocs-mdx
- name: Type check
run: npx tsc --noEmit
- name: Build
run: npm run build
env:
NODE_ENV: production
- name: Upload build artifacts
uses: actions/upload-artifact@v4
if: success()
with:
name: build-output
path: .next
retention-days: 7