From d3cb0a8e4d75eeb5adc604264ee4d26c3aec42f2 Mon Sep 17 00:00:00 2001 From: Alexis Daciuk Date: Tue, 11 Apr 2023 15:38:00 -0400 Subject: [PATCH 1/7] Add pipeline and node version in package.json --- .github/workflows/build.yaml | 9 +++++++++ package.json | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..e5d8c21 --- /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/.github/workflows/public-package-build-test-release-yarn.yml@main + secrets: inherit diff --git a/package.json b/package.json index 2125520..2a40ace 100644 --- a/package.json +++ b/package.json @@ -35,5 +35,8 @@ "repository": { "type": "git", "url": "https://github.com/bluealba/gics" + }, + "engines": { + "node": "8.17.0" } } From 69a74ba210a8ef12cc2076e0f44b7297bfd590f4 Mon Sep 17 00:00:00 2001 From: Alexis Daciuk Date: Tue, 11 Apr 2023 15:42:51 -0400 Subject: [PATCH 2/7] Trigger pipeline --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2f5f91b..d35973c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # GICS + [![Build Status](https://travis-ci.org/bluealba/gics.svg?branch=master)](https://travis-ci.org/bluealba/gics) [![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) From ac1baf00527bbd31e890b8edfe65d0667ea74ba2 Mon Sep 17 00:00:00 2001 From: Alexis Daciuk Date: Tue, 11 Apr 2023 16:10:07 -0400 Subject: [PATCH 3/7] Use the public workflows repo --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e5d8c21..2ec0af6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -5,5 +5,5 @@ on: jobs: build: name: Build and publish a public NPM package - uses: bluealba/workflows/.github/workflows/public-package-build-test-release-yarn.yml@main + uses: bluealba/workflows-public/.github/workflows/public-package-build-test-release-yarn.yml@main secrets: inherit From ae3e8f480625a96ea56b15bfcfabd9c89060a843 Mon Sep 17 00:00:00 2001 From: Alexis Daciuk Date: Tue, 11 Apr 2023 16:10:53 -0400 Subject: [PATCH 4/7] Use the public workflows repo --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2ec0af6..4813800 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -5,5 +5,5 @@ on: jobs: build: name: Build and publish a public NPM package - uses: bluealba/workflows-public/.github/workflows/public-package-build-test-release-yarn.yml@main + uses: bluealba/workflows-public/.github/workflows/public-package-build-test-release-yarn.yml@develop secrets: inherit From 0af04d80a0fb521c47b6bfbf13e103aedc9fbe2b Mon Sep 17 00:00:00 2001 From: Alexis Daciuk Date: Tue, 11 Apr 2023 16:26:05 -0400 Subject: [PATCH 5/7] Trigger pipeline --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index d35973c..2f5f91b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # GICS - [![Build Status](https://travis-ci.org/bluealba/gics.svg?branch=master)](https://travis-ci.org/bluealba/gics) [![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) From 303451f2b771f6918cda4022f51faea34efee890 Mon Sep 17 00:00:00 2001 From: Alexis Daciuk Date: Tue, 11 Apr 2023 16:30:06 -0400 Subject: [PATCH 6/7] Trigger pipeline and build status badge --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) From 73b9a755580199ac09598037254a997012f0475e Mon Sep 17 00:00:00 2001 From: Pablo Rotondo Date: Thu, 13 Apr 2023 15:14:31 -0300 Subject: [PATCH 7/7] Add engines.node >= 8.0.0 --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 2125520..e4ffcda 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",