fix(frontend): mongodb副本集部署信息修改及实例分页问题修复 #3356 #9
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: Yarn Build | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "dbm-ui/frontend/**" | |
pull_request: | |
paths: | |
- "dbm-ui/frontend/**" | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
working-directory: ./dbm-ui/frontend | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn build |