From 407be177c40b168964fa6d21c082239d9621047c Mon Sep 17 00:00:00 2001 From: Lukasz Zimnoch Date: Mon, 16 Oct 2023 09:50:47 +0200 Subject: [PATCH] Fix the `npm-compile-publish` job The typescript library has been migrated from Node 14 to Node LTS (18) recently. We need to reflect that change in all CI jobs. --- .github/workflows/npm-typescript.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/npm-typescript.yml b/.github/workflows/npm-typescript.yml index e1e97e733..c950491a1 100644 --- a/.github/workflows/npm-typescript.yml +++ b/.github/workflows/npm-typescript.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: "14.x" + node-version: "18.x" registry-url: "https://registry.npmjs.org" cache: "yarn" cache-dependency-path: typescript/yarn.lock