From 214ae92202a743784bbd2d7fb0b97b26e91d7e5c Mon Sep 17 00:00:00 2001 From: Sergey Astapov Date: Fri, 22 Sep 2023 11:02:28 -0400 Subject: [PATCH] Update Node.js to 18 in CI --- .github/workflows/CI.yml | 2 +- RELEASE.md | 4 ++-- package.json | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a623df9..8567101 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,7 +12,7 @@ concurrency: cancel-in-progress: true env: - PNPM_VERSION: '7' + PNPM_VERSION: '8' jobs: lint: diff --git a/RELEASE.md b/RELEASE.md index d2f2be0..74f9811 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -31,7 +31,7 @@ Once the prep work is completed, the actual release is straight forward: * First, ensure that you have installed your projects dependencies: ```sh - yarn install + pnpm install ``` * Second, ensure that you have obtained a @@ -50,7 +50,7 @@ Once the prep work is completed, the actual release is straight forward: * And last (but not least 😁) do your release. ```sh - yarn release + pnpm run release ``` [release-it](https://github.com/release-it/release-it/) manages the actual diff --git a/package.json b/package.json index ba4b33b..002a59f 100644 --- a/package.json +++ b/package.json @@ -18,9 +18,9 @@ "typescript": "^4.9.4" }, "volta": { - "node": "16.19.0" + "node": "18.18.0" }, - "packageManager": "pnpm@7.14.0", + "packageManager": "pnpm@8.7.6", "publishConfig": { "registry": "https://registry.npmjs.org" },