feat: 优化低代码应用核心类,增强应用配置选项和事件管理功能,更新文档注释以提升可读性 #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Playground | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'apps/playground/**' | |
| - 'apps/**' | |
| - 'packages/**' | |
| - 'runtime/**' | |
| - 'turbo.json' | |
| - 'package.json' | |
| - '.github/workflows/playground.yml' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18' # 使用适合你项目的Node.js版本 | |
| cache: 'pnpm' | |
| - run: pnpm i | |
| - name: Build Playground | |
| run: pnpm build --filter=playground | |
| - name: Build docs | |
| run: pnpm build --filter=quantum-docs | |
| - name: mkdir dist | |
| run: mkdir dist && mkdir dist/docs && mkdir dist/playground | |
| - name: move to dist | |
| run: mv apps/quantum-docs/dist/* dist/docs && mv apps/playground/dist/* dist/playground | |
| - name: Deploy to GitHub Pages | |
| uses: crazy-max/ghaction-github-pages@v2 | |
| with: | |
| target_branch: gh-pages | |
| build_dir: dist | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |