Skip to content

feat: ✨ 新增组件 #43

feat: ✨ 新增组件

feat: ✨ 新增组件 #43

Workflow file for this run

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