了解工作流

已完成

工作流定义所需的自动化。 它详细说明了应触发工作流的事件。

另外,定义在触发工作流时应运行的作业。

作业定义运行操作的位置,例如要使用的运行程序。

工作流以 YAML 编写,并位于 GitHub 存储库中的 .github/workflows 位置。

示例工作流:

# .github/workflows/build.yml
name: Node Build.

on: [push]

jobs:
    mainbuild:
 
        runs-on: ${{ matrix.os }}
     
    strategy:
        matrix:
            node-version: [12.x]
            os: [windows-latest]
         
    steps:

    - uses: actions/checkout@v1
    - name: Run node.js on latest Windows.
      uses: actions/setup-node@v1
      with:
        node-version: ${{ matrix.node-version }}

    - name: Install NPM and build.
      run: |
        npm ci
        npm run build

可在此处找到一组入门工作流:入门工作流

可在此处查看工作流允许的语法:GitHub Actions 的工作流语法