“npm install”的 Github 操作问题

问题描述 投票:0回答:1

我的工作流程的一部分涉及使用命令

npm install
安装 npm 软件包的步骤,但由于某些未知原因,我在下面收到此错误。我不确定下面的错误是什么或如何修复。

node.js npm github-actions
1个回答
0
投票

我猜 GitHub actions 上的 npm 没有正确配置

  • 使用:actions/setup-node@v3 和: 节点版本:“16” 环境: GITHUB_TOKEN:${{ Secrets.TESTING_GITHUB_TOKEN }} - 运行:npm config set package-lock true - 运行: echo 'package-lock=true'>> .npmrc - 运行:npm install -g npm@latest - 运行:npm i -g npm-upgrade - 运行:| enter image description here
© www.soinside.com 2019 - 2024. All rights reserved.