From 78414abc3d0a9307804fbc0d52c38665d61a9978 Mon Sep 17 00:00:00 2001 From: Vishwas Siravara Date: Tue, 5 Dec 2023 13:42:28 -0800 Subject: [PATCH] ci: install yarn on runner before yarn install (#204) Issue #, if available: *Description of changes:* Install yarn on ec2 runners while executing cdk integration tests *Testing done:* Yes - [X] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Vishwas Siravara --- .github/workflows/cdk-e2e.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cdk-e2e.yaml b/.github/workflows/cdk-e2e.yaml index 7705c60..507a95f 100644 --- a/.github/workflows/cdk-e2e.yaml +++ b/.github/workflows/cdk-e2e.yaml @@ -41,7 +41,9 @@ jobs: node-version: '18' - name: Install dependencies - run: yarn install + run: | + npm install --global yarn + yarn install # Setting Node options and running lerna build - name: Build with lerna