Skip to content

ref: 2.3.グループ管理連携機能開発: Fix travis error

3e3de46
Select commit
Loading
Failed to load commit list.
Closed

[GRDM-55275] Implement Group Management Integration with GakuNin mAP #164

ref: 2.3.グループ管理連携機能開発: Fix travis error
3e3de46
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Feb 11, 2026 in 20m 21s

Build Passed

The build passed. This is a change from the previous build, which errored.

Details

This is a normal build for the feature/nii_grdm_202510_step2/2.3_mapcore_group_management 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 (Trusty)
Node.js Version 10
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "trusty",
  "node_js": [
    "10"
  ],
  "env": [
    "global={:SUPPRESS_NO_CONFIG_WARNING=>\"true\"}={:GK_LOCK_YARN_OPTS=>\"'--ignore-engines'\"}"
  ],
  "cache": {
    "yarn": true,
    "directories": [
      "node_modules"
    ]
  },
  "jobs": {
    "include": [
      {
        "stage": "test",
        "if": "branch ~= /^develop$|^master$|^release\\/.+$/ OR \\\ntype = pull_request OR \\\nenv(RESTRICT_PUSH_BUILDS) != true\n",
        "addons": {
          "chrome": "stable"
        },
        "before_install": [
          "curl -o- -L https://yarnpkg.com/install.sh | bash",
          "export PATH=$HOME/.yarn/bin:$PATH",
          "yarn global add greenkeeper-lockfile@1"
        ],
        "install": [
          "yarn --prefer-offline --frozen-lockfile --ignore-engines",
          "greenkeeper-lockfile-update"
        ],
        "before_script": [
          "yarn lint:es",
          "yarn lint:ts",
          "yarn lint:style",
          "yarn lint:template",
          "yarn test:node-tests",
          "yarn build:test"
        ],
        "script": [
          "yarn test:cover --path ./dist"
        ],
        "after_script": [
          "greenkeeper-lockfile-upload"
        ],
        "after_success": [
          "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
        ]
      }
    ]
  }
}