feat: ✨ 新增组件 #43
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: Build & Deploy | |
on: | |
push: | |
# main 分支有 push 时触发 | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
deploy: | |
# 指定虚拟机环境 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [lts/*] | |
os: [ubuntu-latest, windows-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: https://registry.npmjs.org/ | |
- name: Install | |
run: pnpm install | |
- name: Build 📦 | |
run: pnpm build | |
- name: Deploy 🚀 | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: dist |