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

Bump version to 16.0.1 #129

Merged
merged 1 commit into from
Oct 16, 2023

Bump version to 16.0.1

80aac41
Select commit
Loading
Failed to load commit list.
Merged

Bump version to 16.0.1 #129

Bump version to 16.0.1
80aac41
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 16, 2023 in 2m 31s

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 #129 Bump version to 16.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 Node.js
Operating System Linux (Jammy)
Node.js Version 18.18.1
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "sudo": true,
  "node_js": [
    "18.18.1"
  ],
  "addons": {
    "chrome": "stable"
  },
  "services": [
    "xvfb"
  ],
  "before_install": [
    "export CHROME_BIN=/usr/bin/google-chrome",
    "export DISPLAY=:99.0"
  ],
  "before_script": [
    "npm install -g makeshift && makeshift -s @systelab-technologies -r https://registry.npmjs.org",
    "npm install -g codecov",
    "npm install -g codacy-coverage",
    "npm install"
  ],
  "script": [
    "npm run test",
    "npm run build"
  ],
  "after_success": [
    "cat coverage/lcov.info | codecov",
    "cat ./coverage/lcov.info | codacy-coverage"
  ],
  "before_deploy": [
    "cd dist/systelab-translate"
  ],
  "deploy": [
    {
      "provider": "npm",
      "skip_cleanup": true,
      "email": "aserra@werfen.com",
      "on": {
        "tags": true
      },
      "api_token": "$NPM_TOKEN"
    }
  ]
}