Angular 应用程序无法使用 GitHub 操作 ('Cannot find module' 构建)

标签 angular typescript git github-actions

我能够在本地构建我的项目(使用我的 GitHub Action 使用的相同构建命令)。但是,在管道中运行时它会失败并出现以下错误(还有更多,但基本上都是相同的错误)。

ERROR in src/app/root-store/actions.ts:3:32 - error TS2307: Cannot find module '../shared/models/view-models/NewUserRequest'.

3 import { NewUserRequest } from '../shared/models/view-models/NewUserRequest';
                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/app/root-store/frame-store/actions.ts:3:41 - error TS2307: Cannot find module 'src/app/shared/models/requests/FrameRequests'.

3 import { CreateFrameImageRequest } from 'src/app/shared/models/requests/FrameRequests';
                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/app/shared/models/translators/frameTranslator.ts:4:61 - error TS2307: Cannot find module '../requests/FrameRequests'.
它无法解析我正在导入组件的某些文件。它说“找不到模块”,但这些只是 typescript 接口(interface)文件,它们不在模块中。我是 GitHub Actions 的新手,真的不知道如何开始调试此类问题。
这是我的 actions.yml 文件
# This is a basic workflow to help you get started with Actions

name: Build

# Controls when the action will run.
on:
  # Triggers the workflow on push or pull request events but only for the master branch
  push:
    branches: [ master ]
  # pull_request:
  #   branches: [ master ]

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  # This workflow contains a single job called "build"
  build:
    name: Build
    # The type of runner that the job will run on
    runs-on: ubuntu-latest

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
      - name: Checkout Repo
        uses: actions/checkout@v2
        with:
          ref: master

      - name: Setup Node
        uses: actions/setup-node@v2-beta
        with:
          node-version: '10'

      - name: Cache node modules
        uses: actions/cache@v2
        env:
          cache-name: cache-node-modules
        with:
          # npm cache files are stored in `~/.npm` on Linux/macOS
          path: ~/.npm
          key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}

      - name: Install Dependencies
        run: npm install

      - name: Build Project
        run: npm run build-prod
npm 脚本 build-prod转换为 ng build --prod .同样,此命令在本地成功,只是在 GitHub Actions 中不成功。

最佳答案

这看起来非常像这个问题的同一个问题:
Github Actions for NodeJS - 'Error: Cannot find module' for local file
我刚遇到和你一样的问题,这个问题为我解决了。

关于Angular 应用程序无法使用 GitHub 操作 ('Cannot find module' 构建),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65011667/

相关文章:

返回嵌套对象时,Typescript 不返回嵌套类型

angular - Angular 6 中不纯管道的替代方案?

git - 忽略 .gitignore 中的行

angular - 在 Angular 2 项目中运行 ngserve 命令时出错

javascript - 如何从 Angular Firebase 获取 2019 年的数据?

angular - InnerHTML *ngIf 不起作用 Angular5

json - 如何显示自定义验证错误消息

javascript - Vue JS typescript 组件找不到注入(inject)实例属性

git - JetBrains(IntelliJ、PhpStorm、WebStorm ...)带有 SSH key 的私有(private) git 存储库

git - Git可以忽略具有相同内容但更新时间戳的文件吗