From 6a37893ecd241c6f476f38c37d9826c9ac828c45 Mon Sep 17 00:00:00 2001 From: Shen Date: Tue, 21 Feb 2023 11:23:45 -0500 Subject: [PATCH] fix gitaction error in 24.1-release (#8391) Set the Node.js version to 16 only for the test environment in GitHub Action --- .github/workflows/loristest.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/loristest.yml b/.github/workflows/loristest.yml index d2ce97c775f..f6f3d989091 100644 --- a/.github/workflows/loristest.yml +++ b/.github/workflows/loristest.yml @@ -49,6 +49,11 @@ jobs: if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress --no-suggest + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: 16.x + - name: Build LORIS run: make dev