From d7400fcbdecdfdc128a0ce2743d43cd72a4d2fbf Mon Sep 17 00:00:00 2001 From: Vitaly Turovsky Date: Mon, 21 Oct 2024 02:34:43 +0300 Subject: [PATCH] ci: add Node.js setup step for version 20 in release workflow --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6223eca..d092115 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,6 +10,10 @@ jobs: timeout-minutes: 30 # needs: test steps: + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: 20 - run: npm -v - run: node -v - uses: actions/checkout@v2