Skip to content

style: fix comfyui-group background color #4

style: fix comfyui-group background color

style: fix comfyui-group background color #4

Workflow file for this run

name: Node.js CI/CD Pipeline # 工作流名
on: # 触发器,定义何时运行此工作流
push:
branches: [master] # 默认分支名!
pull_request:
branches: [master]
workflow_dispatch: # 手动执行
jobs: # 工作流
build: # 作业名
runs-on: ubuntu-latest # 环境 - 基于镜像
steps: # 作业步骤!
- uses: actions/checkout@v3 # 环境 - 检出代码 (使用的是官方提供的action)
- name: Use Node.js # 环境 - node环境 (使用的是官方提供的action),Node.js版本
uses: actions/setup-node@v3
with:
node-version: '20'
- run: npm ci # 脚本 - 安装依赖,npm ci代替npm install以获得更快的速度
- run: npm run build # 脚本 - 构建脚本
- name: Upload Build Artifact # 其他 - 保存构建产物 (使用的是官方提供的action)
if: always() # 即使之前的构建步骤失败,也会上载构建产物
uses: actions/upload-artifact@v3
with:
name: build-artifact # 构建产物的名称
path: | # 构建产物的路径
main.js
styles.css
manifest.json