From 3ea82398009e9be76019405072a5042f3f9b7959 Mon Sep 17 00:00:00 2001 From: Vasantha Kumar Selvaraj Date: Thu, 4 Jan 2024 17:42:32 +0530 Subject: [PATCH 1/2] feat(HII-8564): Node version 16 to 18 --- composite-actions/frontend-generic/test/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composite-actions/frontend-generic/test/action.yaml b/composite-actions/frontend-generic/test/action.yaml index 0a1a1506..07f5a4b5 100644 --- a/composite-actions/frontend-generic/test/action.yaml +++ b/composite-actions/frontend-generic/test/action.yaml @@ -61,7 +61,7 @@ runs: - name: Install Node uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Auth to Nexus npm registry uses: extenda/actions/nexus-auth-npm@v0 From 52cdf9590b0f68524b842898872d39852c08aeca Mon Sep 17 00:00:00 2001 From: Vasantha Kumar Selvaraj Date: Thu, 4 Jan 2024 18:11:56 +0530 Subject: [PATCH 2/2] feat: Add ignore engine flag --- composite-actions/frontend-generic/test/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composite-actions/frontend-generic/test/action.yaml b/composite-actions/frontend-generic/test/action.yaml index 07f5a4b5..a2835273 100644 --- a/composite-actions/frontend-generic/test/action.yaml +++ b/composite-actions/frontend-generic/test/action.yaml @@ -61,7 +61,7 @@ runs: - name: Install Node uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 16 - name: Auth to Nexus npm registry uses: extenda/actions/nexus-auth-npm@v0 @@ -91,7 +91,7 @@ runs: - name: Install dependencies shell: bash if: steps.cache-yarn-node-modules.outputs.cache-hit != 'true' && inputs.BUILD_TOOL == 'yarn' - run: yarn install --frozen-lockfile + run: yarn install --ignore-engines --frozen-lockfile - name: Lint shell: bash