gpt4 book ai didi

github 操作 : run a test file on pull request

转载 作者:行者123 更新时间:2023-12-04 10:20:10 25 4
gpt4 key购买 nike

当有人发送拉取请求时,我想运行一个测试文件。
这是我的 action.yml文件。

name: "GitHub Actions Test"
on:
pull_request:
branches:
- master


jobs:
test:
runs-on: ubuntu-latest
steps:
# - uses: actions/checkout@v1
- name: 'Install Node'
uses: actions/setup-node@v1
- name: Install mocha
run: npm install -g mocha
- name: Install dependencies
run: npm install
- name: "Run Test"
run: mocha test-mocha.test.js



但是从github运行测试时,出现以下错误:
Error: No test files found: "test-mocha.test.js"
我想知道我的 yml 文件的最后一行出了什么问题。
如何解决这个问题?

最佳答案

这是因为您已注释掉检查代码的行:

# - uses: actions/checkout@v1 # Remove the comment from this line

默认情况下,您的代码不会在工作流的目录中 checkout 。因此,您必须使用 Checkout GitHub Action检查您的代码。

从自述文件:

This action checks-out your repository under $GITHUB_WORKSPACE, so your workflow can access it.

关于github 操作 : run a test file on pull request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60904105/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com