@scion-scxml/test-framework
Version:
A set of SCXML tests, and an HTTP client test runner for testing against SCXML HTTP test servers.
16 lines (14 loc) • 422 B
JavaScript
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
release: {
options: {
github: {
repo: 'jbeard4/scxml-test-framework', //put your user/repo here
accessTokenVar: 'GITHUB_ACCESS_TOKEN', //ENVIRONMENT VARIABLE that contains GitHub Access Token
}
}
}
});
};