github-build

WebJar for github-build

License

License

MIT
Categories

Categories

Github Development Tools Version Controls
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

github-build
Last Version

Last Version

1.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

github-build
WebJar for github-build
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/siddharthkp/github-build

Download github-build

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/github-build/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>github-build</artifactId>
    <version>1.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/github-build/
implementation 'org.webjars.npm:github-build:1.2.0'
// https://jarcasting.com/artifacts/org.webjars.npm/github-build/
implementation ("org.webjars.npm:github-build:1.2.0")
'org.webjars.npm:github-build:jar:1.2.0'
<dependency org="org.webjars.npm" name="github-build" rev="1.2.0">
  <artifact name="github-build" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='github-build', version='1.2.0')
)
libraryDependencies += "org.webjars.npm" % "github-build" % "1.2.0"
[org.webjars.npm/github-build "1.2.0"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : axios jar [0.15.3]

Project Modules

There are no modules declared in this project.



Github builds/checks for CI


 

Code Climate Known Vulnerabilities

 

Install

npm install github-build --save

Usage

const Build = require('github-build')

const data = {
  repo: 'siddharthkp/github-build', // (author/repo)
  sha: '6954e71d46be1ae9b0529aae6e00b64d7a1023d4', // (commit sha)
  token: 'secret', // (github oauth token: https://developer.github.com/v3/oauth)
  label: 'my CI service',
  description: 'checking some stuff',
  url: 'http://my-ci-service.com/builds/1', // details url
}

/* Create a build */
const build = new Build(data)

/* When you call start, a pending status get's added on github (returns a promise) */
build.start()

/* Run your tests */

/* If things go well, call pass, it will mark change the status to success ✅ (returns a promise) */
build.pass()

/* Or if the tests fail, mark this build as failed ❌ (returns a promise) */
build.fail()

/* If you could not run the tests because of incorrect config, just error out the build (returns a promise) */
build.error() // use when build errors out (returns a promise)

 

If you like it then you should put a ⭐️ on it

 

License

MIT © siddharthkp

Versions

Version
1.2.0