2

第一次尝试使用 CodeBuild,从 CodeCommit 中提取数据。但是我的构建规范有问题。这是我到目前为止的代码:

version: 0.2

phases:

    INSTALL:
        runtime-versions:
            nodejs: 10
        commands:
            - npm install


    PRE_BUILD:
      commands:
        - npm install --quiet --global expo-cli
        - >
          if [ -f yarn.lock ]; then
            yarn
          elif [ -f package-lock.json ] || [ -f npm-shrinkwrap.json ]; then
            npm ci
          else
            npm install
          fi
    BUILD:
      commands:
        - expo build:web

artifacts:
    baseDirectory: web-build
    files:
      - '**/*'
    name: 
        myname-$(date +%Y-%m-%d) 
cache:
    paths:
      - node_modules/**/*
      - $(npm root --global)/**/*

我已经添加了 nodejs 10 的运行时,它已经停止触发这个错误,但现在它又踢了。有谁知道如何为 React-Native Web 项目正确调整它?

4

1 回答 1

2

我相信阶段名称区分大小写,因此将它们更改为install,pre_buildbuild.

于 2020-01-30T15:27:59.903 回答