From 48e8bf6ddaefbce92475bd2fcbad2afdccac8297 Mon Sep 17 00:00:00 2001 From: zubiden <19638254+zubiden@users.noreply.github.com> Date: Tue, 6 Aug 2024 20:06:02 +0200 Subject: [PATCH] [dev] Define Node version in repository (#4799) --- .github/workflows/package-and-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package-and-publish.yml b/.github/workflows/package-and-publish.yml index 154e99c0a..8d885ac15 100644 --- a/.github/workflows/package-and-publish.yml +++ b/.github/workflows/package-and-publish.yml @@ -24,10 +24,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Use Node.js 20.x + - name: Setup Node.js ${{ vars.NODE_VERSION }} uses: actions/setup-node@v4 with: - node-version: 20.x + node-version: ${{ vars.NODE_VERSION }} - name: Cache node modules id: npm-cache