Skip to content

feat: rename to schema-form #23

feat: rename to schema-form

feat: rename to schema-form #23

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: doc html website
on:
push:
branches: [ master ]
paths:
- 'demo-site/index.*'
- 'scripts/build-demo.js'
pull_request:
branches: [ master ]
paths:
- 'demo-site/index.*'
- 'scripts/build-demo.js'
jobs:
build:
name: compile doc/en to html
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
cache: 'npm'
- run: npm run build:doc --if-present
- name: commit page
run: |
git config --global user.name 'zhou-yg'
git config --global user.email 'zhou.y.g890@gmail.com'
git commit -a -m '🤖 github action: update index.html'
git push