button组件文档补充 #415
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: Check | |
on: | |
pull_request: | |
branches: | |
- main | |
types: [opened, edited, reopened] | |
env: | |
CI: true | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
# - run: npm install -g yarn | |
- name: install | |
run: yarn | |
- name: bootstrap | |
run: yarn run bootstrap:lerna | |
- name: build-cli | |
run: npx lerna run build --scope=@antmjs/vantui-cli | |
- name: build-ui | |
run: npx lerna run build --scope=@antmjs/vantui | |
- name: build-doc | |
run: npx lerna run build --scope=vantui-doc | |
- name: build-demo | |
run: npx lerna run build --scope=vantui-demo | |
- name: lint | |
run: | | |
yarn run eslint | |
yarn run stylelint | |
- name: test | |
run: yarn run test | |
#以后添加发送钉钉/微信消息,进来指定reviewer |