Merge pull request #184 from qianmoQ/feature-components #363
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: Push code checker | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "dev" ] | |
jobs: | |
check_ui_compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- run: npm -g install pnpm && pnpm install && pnpm run build |