添加了顶部状态栏功能和语法。 #723
Workflow file for this run
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 Check | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| # 任务 | |
| jobs: | |
| build-webgal-static-webpage : | |
| # 服务器环境:最新版 Ubuntu | |
| runs-on: ubuntu-latest | |
| steps: | |
| # 拉取代码 | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version-file: package.json | |
| cache: 'yarn' | |
| # 安装依赖 | |
| - name: Install | |
| run: npm install yarn -g && yarn install | |
| # 运行 parser 测试 | |
| - name: Parser Test | |
| run: yarn parser:test --run | |
| # 生成静态文件 | |
| - name: Build | |
| run: yarn build && cd ./packages/webgal && touch dist/.nojekyll |