【发布时间】:2022-02-11 05:31:28
【问题描述】:
我已经为 Github Action 编写了一个测试文件:
test.yml
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
但我的 package.json 使用组织私有 repo。当 Github Action 运行失败并出现错误:
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/@org/repo/
npm ERR! 404
npm ERR! 404 '@org/repo@1.2.3' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/runner/.npm/_logs/2022-02-10T17_17_46_961Z-debug.log
Error: Process completed with exit code 1.
我的研究试图解决这个问题:
- Package is not publishing to npm (not in the npm registry)
- Getting 404 when attempting to publish new package to NPM
- Installing npm package fails with 404
- 404 error while publishing npm package -
npm ERR! 404 Not Found - PUT https://registry.npmjs.org/
在我的 Github Action 中,我如何正确引用私有 org 存储库,以便我的测试能够正常工作,或者我缺少一个步骤?
【问题讨论】:
-
我发现this issue 有一些有趣的建议。例如,在调用使用
package.json的npm ci命令时使用 PAT,因为默认的 GITHUB_TOKEN 无权访问其他存储库,即使在同一组织中也是如此。
标签: node.js unit-testing testing yaml github-actions