Github Action - Error: Process completed with exit code

Github Action - Error: Process completed with exit code

我正在尝试设置 Github 操作以 npm 发布我的包。但是当我继续执行

时出现了这个错误

我的 workflows/publish.yml 文件如下所示:

name: publish

on:
  push:
    branches: [ main ]
 

jobs:
  release:
    
    name: publish
    runs-on: windows-latest


    steps:
    - name: Checkout
      uses: actions/checkout@v2.3.4
    - name: Setup Node.js environment
      uses: actions/setup-node@v2.2.0
      with:
        node-version: 14
        registry-url : https://registry.nmpjs.org
    - name: publish
      run: npm publish --access public
      env:
          NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}

您的 package.json 文件已损坏。

{
  "name": "@sakibb019/npx-card",
  "version": "1.0.0",
  "description": "",
  "main": "card.js",
  "scripts": {
    "dev": "nodemon card.js"
  },
  "keywords": [],
  "author": "",
  "repository": {
    "url": "git://github.com/sakibb019/test.git"
  },
  "license": "ISC",
  "dependencies": {
    "boxen": "^5.0.1",
    "chalk": "^4.1.1",
    "clear": "^0.1.0",
    "inquirer": "^8.1.0"
  }
}

我已经添加了缺少的大括号,但您仍需要找到一个完整的包 JSON 文件。 "inquirer": "^8.1.

之后应该还有更多内容