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

Update dependency automattic/vipwpcs to ^3.0.1 #294

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Update dependency automattic/vipwpcs to ^3.0.1

58dc222
Select commit
Loading
Failed to load commit list.
Open

Update dependency automattic/vipwpcs to ^3.0.1 #294

Update dependency automattic/vipwpcs to ^3.0.1
58dc222
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 22, 2024 in 3m 26s

Build Passed

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #294 Update dependency automattic/vipwpcs to ^3.0.1.
Any changes that have been made to the master branch before the build ran are also included.

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 PHP
Operating System Linux (Focal)
PHP Version 8.2
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "services": [
    "docker"
  ],
  "php": [
    "8.2"
  ],
  "before_install": [
    "nvm install",
    "nvm use",
    "mkdir -p uploads"
  ],
  "install": [
    "echo \"$DOCKER_PASSWORD\" | docker login ghcr.io -u \"$DOCKER_USERNAME\" --password-stdin || true",
    "docker-compose pull wordpress mkcert || true",
    "npm install"
  ],
  "script": [
    "npm run lint",
    "npm run test"
  ],
  "deploy": [
    {
      "provider": "script",
      "script": "sudo apt update",
      "skip_cleanup": true,
      "on": {
        "branch": [
          "master"
        ],
        "condition": [
          "-n \"$DOCKER_USERNAME\" && -z $SKIP_DEPLOY"
        ]
      }
    },
    {
      "provider": "script",
      "script": "npm run deploy-production",
      "skip_cleanup": true,
      "on": {
        "branch": [
          "master"
        ],
        "condition": [
          "-z $SKIP_DEPLOY"
        ]
      }
    },
    {
      "provider": "script",
      "script": "npm run deploy-staging",
      "skip_cleanup": true,
      "on": {
        "branch": [
          "develop"
        ],
        "condition": [
          "-z $SKIP_DEPLOY"
        ]
      }
    }
  ],
  "branches": {
    "only": [
      "master",
      "develop"
    ]
  },
  "cache": {
    "npm": true,
    "directories": [
      "$HOME/.composer/cache"
    ]
  },
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  }
}