InputFormula 公式编辑器 添加clearDefaultFormula 属性,可清除默认函数 #6522
Workflow file for this run
This file contains 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: PR test | |
on: | |
pull_request: | |
branches: ['**'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: npm install | |
env: | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
run: | | |
npm i --legacy-peer-deps | |
cd packages/office-viewer | |
npm i --legacy-peer-deps | |
cd ../../ | |
npm run build --workspace amis-formula | |
npm run build --workspace amis-core | |
npm run build --workspace amis-ui | |
npm run build --workspace amis | |
npm run build --workspace amis-editor-core | |
npm run build --workspace amis-editor | |
- name: typescript check | |
env: | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
run: | | |
npm run typecheck | |
- name: test | |
run: | | |
npm test --workspaces | |
cd packages/office-viewer | |
npm test | |
cd ../../ | |
sh deploy-gh-pages.sh |