Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Build and publish a public NPM package
on:
push:

jobs:
build:
name: Build and publish a public NPM package
uses: bluealba/workflows-public/.github/workflows/public-package-build-test-release-yarn.yml@develop
secrets: inherit
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# GICS

[![Build Status](https://travis-ci.org/bluealba/gics.svg?branch=master)](https://travis-ci.org/bluealba/gics)

[![Build and publish a public NPM package](https://github.com/bluealba/gics/actions/workflows/build.yaml/badge.svg)](https://github.com/bluealba/gics/actions/workflows/build.yaml)
[![npm](https://img.shields.io/npm/v/gics.svg)](https://npmjs.org/package/gics)
[![npm](https://img.shields.io/npm/dt/gics.svg)](https://npmjs.org/package/gics)
[![Coverage Status](https://coveralls.io/repos/github/bluealba/gics/badge.svg?branch=master)](https://coveralls.io/github/bluealba/gics?branch=master)
Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gics",
"version": "3.0.0",
"version": "3.0.2",
"description": "A Javascript library to parse and manipulate GICS codes",
"main": "index.js",
"scripts": {
Expand All @@ -20,6 +20,9 @@
],
"author": "Gunther Schneider <gunther.schneider@bluealba.com>",
"license": "ISC",
"engines" : {
"node" : ">=8.0.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
Expand All @@ -35,5 +38,8 @@
"repository": {
"type": "git",
"url": "https://github.com/bluealba/gics"
},
"engines": {
"node": "8.17.0"
}
}