From 4e838b709869ac3a8ac5ae66e33ae07f9f4b5ffa Mon Sep 17 00:00:00 2001 From: Xavier Rutayisire Date: Mon, 30 Oct 2023 11:30:41 +0100 Subject: [PATCH] ci(node): Make CI run only in LST Node version --- .github/actions/setup-node/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup-node/action.yml b/.github/actions/setup-node/action.yml index bfa35aecd6..ef7db1957c 100644 --- a/.github/actions/setup-node/action.yml +++ b/.github/actions/setup-node/action.yml @@ -1,12 +1,12 @@ -name: Setup Node 16 -description: Setup Node 16 +name: Setup Node LTS +description: Setup Node LTS runs: using: composite steps: - - name: Use Node.js 16 + - name: Use Node.js LTS uses: actions/setup-node@v3 with: cache: yarn - node-version: 16 + node-version: lts/* registry-url: https://registry.npmjs.org