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

Add GitHub action CI support for repositories hosted outside of VIP GitHub org #235

Merged
merged 15 commits into from
Jul 6, 2023

Ignore scripts to optimize caching

8034339
Select commit
Loading
Failed to load commit list.
Merged

Add GitHub action CI support for repositories hosted outside of VIP GitHub org #235

Ignore scripts to optimize caching
8034339
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jul 6, 2023 in 3m 17s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #235 Add GitHub action CI support for repositories hosted outside of VIP GitHub org.
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 (Bionic)
PHP Version 8.0
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "services": [
    "docker"
  ],
  "php": [
    "8.0"
  ],
  "before_install": [
    "nvm install",
    "nvm use",
    "mkdir -p uploads"
  ],
  "install": [
    "npm install"
  ],
  "script": [
    "npm run lint",
    "npm run test"
  ],
  "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
      }
    ]
  }
}