From d75c8b2e26bcea026b73a6ad391aa4ec1e44c3cf Mon Sep 17 00:00:00 2001 From: Fernando Falci Date: Thu, 23 Nov 2023 14:19:22 +0100 Subject: [PATCH] Update node version to LTS in test workflows --- .github/workflows/test-windows.yaml | 11 ++++++----- .github/workflows/test.yml | 5 +++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-windows.yaml b/.github/workflows/test-windows.yaml index 54a370c1..28179254 100644 --- a/.github/workflows/test-windows.yaml +++ b/.github/workflows/test-windows.yaml @@ -33,12 +33,13 @@ jobs: run: ./test_hnsd - name: Setup Integration - uses: actions/setup-node@v3.5.1 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: lts/* + check-latest: true - name: Integration Tests working-directory: ./integration - run: | - npm install - npm run test + run: | + npm install + npm run test diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 91cca2e5..9c14344e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,9 +31,10 @@ jobs: run: ./test_hnsd - name: Setup Integration - uses: actions/setup-node@v3.5.1 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: lts/* + check-latest: true - name: Integration Tests working-directory: ./integration