diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..4813800 --- /dev/null +++ b/.github/workflows/build.yaml @@ -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 diff --git a/README.md b/README.md index 2f5f91b..b7db99a 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/package.json b/package.json index 2125520..180b7ff 100644 --- a/package.json +++ b/package.json @@ -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": { @@ -20,6 +20,9 @@ ], "author": "Gunther Schneider ", "license": "ISC", + "engines" : { + "node" : ">=8.0.0" + }, "devDependencies": { "babel": "^6.23.0", "babel-cli": "^6.26.0", @@ -35,5 +38,8 @@ "repository": { "type": "git", "url": "https://github.com/bluealba/gics" + }, + "engines": { + "node": "8.17.0" } }