github actions jenkins
# github workflow 设置 yaml 文件 name: Frontend pr workflowon: # 在 develop 分支上触发 PR 的 build pull_request: branches: ["develop"]jobs: build: # 任务名 runs-on: [self-hostsd] steps: # 步骤列表 - uses: actions/checkout@v3 # 步骤使用 actions 组织的 action,切换仓库,版本 v3 - name: Use Node.js 16.xx.x # 使用内部 action...
more...