Skip to content

Perform npm update 馃摛 - #154

Merged
AdrieanKhisbe merged 2 commits into
masterfrom
deps-refresh
Oct 28, 2025
Merged

Perform npm update 馃摛#154
AdrieanKhisbe merged 2 commits into
masterfrom
deps-refresh

Update LICENSE years :balance_scale:

04dd57b
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 27, 2025 in 7m 2s

Build Passed

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #154 Perform npm update 馃摛.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

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

Stage 1: lint

This stage passed.

Job Node.js OS State
9514.1 lint 20 Linux passed

Stage 2: test

This stage passed.

Job Node.js OS State
9514.2 test-update-node18 18 Linux passed
9514.3 test-update-node20 20 Linux passed
9514.4 test-update-node22 22 Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Jammy)
Node.js Version 20
Build Configuration
{
  "anchor": "npm",
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "node_js": [
    "20"
  ],
  "cache": {
    "npm": true
  },
  "install": [
    "npm ci"
  ],
  "stages": [
    {
      "name": "lint"
    },
    {
      "name": "test"
    },
    {
      "name": "auto-bump",
      "if": "branch = master AND type = push"
    }
  ],
  "jobs": {
    "include": [
      {
        "stage": "lint",
        "name": "lint",
        "script": [
          "npm run lint"
        ]
      },
      {
        "stage": "test",
        "name": "test-update-node18",
        "node_js": "18",
        "script": [
          "npm run test:all"
        ]
      },
      {
        "stage": "test",
        "name": "test-update-node20",
        "node_js": "20",
        "script": [
          "npm run test:all"
        ]
      },
      {
        "stage": "test",
        "name": "test-update-node22",
        "node_js": "22",
        "script": [
          "npm run test:all"
        ]
      },
      {
        "stage": "auto-bump",
        "name": "auto-bump",
        "before_script": [
          "git config --global user.email \"tech@coorpacademy.com\"",
          "git config --global user.name \"Coorpacademy Bot\""
        ],
        "script": [
          "./scripts/self-update.sh"
        ]
      }
    ]
  }
}