From 8fddc4b99db0faa9e922d2c0d9d44c00a105374a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 25 Oct 2022 00:53:44 +0200 Subject: [PATCH] Use a supported GH action to read package.json MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/ci.yml | 2 +- .github/workflows/npmpublish.yml | 2 +- .prettierignore | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e180d71e..80e71656 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest, ubuntu-latest] - node: ['16.x', '18.x'] + node: ['16.x', '18.x', '19.x'] steps: - name: Checkout diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index 6b1a3731..8840dd99 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -46,8 +46,8 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Read package.json version - uses: tyankatsu0105/read-package-version-actions@v1 id: package-version + uses: jaywcjlove/github-action-package@main - name: Install run: npm ci diff --git a/.prettierignore b/.prettierignore index 99d9d1f9..9372a019 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,6 +1,7 @@ .nyc_output/ coverage/ reports/ +benchmarks/internal/results/ docs/ outputs/ lib/ -- 2.34.1