Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 8.1.1 - disable runtimeErrors in webpack-dev-server overlay #336

Merged
merged 1 commit into from Mar 23, 2023

disable `runtimeErrors` in webpack-dev-server

833e5a5
Select commit
Failed to load commit list.
Merged

Release 8.1.1 - disable runtimeErrors in webpack-dev-server overlay #336

disable `runtimeErrors` in webpack-dev-server
833e5a5
Select commit
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Branch succeeded Mar 23, 2023 in 9m 0s

Build Passed

The build passed.

Details

This is a normal build for the disable-runtime-error-overlay branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Xenial)
Node.js Version 16
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "node_js": [
    "16"
  ],
  "before_install": [
    "git config --global url.\"https://git@\".insteadOf git://",
    "echo -e \"machine github.com\\n  login $CI_USER_TOKEN\" > ~/.netrc",
    "echo \"//familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/:_authToken=${NPM_PUBLISH_TOKEN}\" >> ~/.npmrc",
    "echo \"@fs:registry=https://familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/\" >> ~/.npmrc",
    "echo \"//familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/:_authToken=${NPM_PUBLISH_TOKEN}\" >> packages/react-scripts/.npmrc",
    "echo \"@fs:registry=https://familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/\" >> packages/react-scripts/.npmrc"
  ],
  "install": [
    "npm install",
    "cd packages/react-scripts",
    "npm install",
    "cd ../../"
  ],
  "script": [
    "npm test",
    "node publishPrReleaseAndCreateFreshCraTemplate.js",
    "cd ${HOME}/tmp/fresh-cra-template",
    "echo \"//familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/:_authToken=${NPM_PUBLISH_TOKEN}\" >> ${HOME}/tmp/fresh-cra-template/.npmrc",
    "echo \"@fs:registry=https://familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/\" >> ${HOME}/tmp/fresh-cra-template/.npmrc",
    "CI=true npm test",
    "npm run build"
  ],
  "before_deploy": [
    "cd ${TRAVIS_BUILD_DIR}/packages/react-scripts"
  ],
  "deploy": [
    {
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "npm run fs-publish -- --allow-earlier-version",
      "on": {
        "branch": [
          "frontierMaster"
        ]
      }
    },
    {
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "npm run fs-publish -- --allow-earlier-version",
      "on": {
        "branch": [
          "v7.x"
        ]
      }
    },
    {
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "npm run fs-publish -- --allow-earlier-version",
      "on": {
        "branch": [
          "next"
        ]
      }
    },
    {
      "provider": "script",
      "skip_cleanup": true,
      "edge": true,
      "cleanup": false,
      "script": "cd ${TRAVIS_BUILD_DIR} && ./freshCraTemplateUpdate.sh",
      "on": {
        "branch": [
          "frontierMaster"
        ]
      }
    }
  ],
  "branches": {
    "except": [
      "master"
    ]
  }
}