From c18bf56974fdc307418ccf49781362661893dff9 Mon Sep 17 00:00:00 2001 From: Katy DeCorah Date: Fri, 3 May 2024 21:01:50 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/npm-publish.yml | 2 +- .github/workflows/test.yml | 2 ++ package-lock.json | 2 +- package.json | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 61088d8..e200491 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 20.x - run: npm ci - run: npm test diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9eb1f4c..ab86801 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 + with: + node-version: 20.x - run: npm ci - run: npm test env: diff --git a/package-lock.json b/package-lock.json index 6271ff9..a695fec 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@library-pals/isbn", - "version": "0.0.0", + "version": "0.2.0", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 1463931..ac49b9c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@library-pals/isbn", - "version": "0.0.0", + "version": "0.2.0", "description": "Find books by ISBN", "main": "src/index.js", "type": "module", @@ -8,7 +8,7 @@ "node": ">=20.0.0" }, "bin": { - "isbn": "./src/cli.js" + "isbn": "src/cli.js" }, "scripts": { "lint": "eslint .",