mirror of
https://gitee.com/layui/layui.git
synced 2025-04-05 17:38:02 +08:00

* ci: 使用 pkg-pr-new 预发布 PR 并生成预览模板 * update * update * update * ci: 更换文件名 --------- Co-authored-by: 贤心 <3277200+sentsim@users.noreply.github.com>
24 lines
455 B
YAML
24 lines
455 B
YAML
name: Publish Pull Request Preview
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- run: npx pkg-pr-new publish --template './examples/pr-preview'
|