概述

Github Actions 使您可以轻松地直接从存储库自动化、定制和执行软件开发工作流程,例如构建和测试。

先决条件

  • 要测试的已推送到 Github 的工作项目
  • 测试在本地系统中正常运行

设置指南

在本例中,我们将学习如何使用 Github Actions 使用 nightwatch-examples Github 仓库运行 Nightwatch 测试。

步骤 1:安装 NodeJS 插件

首先,转到您的存储库的 Github Actions 部分,然后通过单击新建工作流程并键入 node 在搜索工作流程输入框中,然后单击 Node.js 插件的配置来设置 NodeJS 插件。

NodeJS Plugin Setup

步骤 2:配置 .yml 文件

现在,您必须在node.js.yml文件中写入步骤以运行您的测试。

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Nightwatch Tests

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        node-version: [12.x, 14.x, 16.x]
        # See supported Node.js release schedule at https://node.org.cn/en/about/releases/

    steps:
    - uses: actions/checkout@v3
    - name: Use Node.js $undefined
      uses: actions/setup-node@v3
      with:
        node-version: $undefined
        cache: 'npm'

    - name: npm-install
      run: npm ci
    - run: sudo apt-get install xvfb

    - name: Run Nightwatch tests
      run: xvfb-run --auto-servernum npm test -- --env chrome

请遵循指南以获取 .yml 文件的更详细版本。

步骤 3:将 .yml 文件推送到 github

现在,在填写完“提交新文件”表单后,单击提交新文件按钮。

NodeJS Plugin Setup

您可以跳过上述步骤,也可以直接从本地推送您的 .yml。但请确保文件路径始终为.github/workflow/file_name.yml

步骤 4:如何运行测试?

将您的更改推送到 Github 后,将提出拉取请求,管道将开始运行,您的测试将自动运行。