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

Fix: Do not add nodes with no label #1478

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

fix: Do not add nodes with no label

eee44fe
Select commit
Loading
Failed to load commit list.
Draft

Fix: Do not add nodes with no label #1478

fix: Do not add nodes with no label
eee44fe
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Nov 29, 2023 in 31m 46s

Build Passed

The build passed.

Details

This is a normal build for the fix/component-diagram-does-not-render branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has four jobs, running in two sequential stages.

Stage 1: test

This stage passed.

Job Node.js ENV OS State
4840.1 18 Linux passed
4840.2 16 Linux passed
4840.3 18 YARN_GPG=no windows passed

Stage 2: deploy

This stage passed.

Job Node.js OS State
4840.4 16 Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Focal)
Node.js Version 16
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "node_js": [
    "16"
  ],
  "cache": {
    "npm": false,
    "directories": [
      "$HOME/.yarn/berry/cache",
      "$HOME/.cargo",
      "$HOME/.pkg-cache"
    ]
  },
  "git": {
    "symlinks": true
  },
  "install": [
    "yarn && yarn run build"
  ],
  "script": [
    "yarn run ci"
  ],
  "jobs": {
    "include": [
      {
        "node_js": "18",
        "script": [
          "yarn run lint",
          "yarn run ci"
        ]
      },
      {
        "node_js": "16"
      },
      {
        "os": "windows",
        "node_js": "18",
        "env": [
          {
            "YARN_GPG": "no"
          }
        ],
        "script": [
          "yarn test"
        ]
      },
      {
        "stage": "deploy",
        "if": "branch != main",
        "script": [
          "yarn run chromatic"
        ]
      },
      {
        "stage": "deploy",
        "if": "branch = main",
        "node_js": "18",
        "before_install": [
          "sudo apt-get update",
          "sudo apt-get install -y qemu-user-static"
        ],
        "install": [
          "yarn",
          "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --profile default -y",
          "source \"$HOME/.cargo/env\""
        ],
        "script": [
          "./bin/presign \\\n&& yarn build \\\n&& yarn run semantic-release \\\n&& yarn run chromatic --auto-accept-changes"
        ]
      }
    ]
  }
}