Skip to content

Commit

Permalink
ci: install yarn on runner before yarn install (#204)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
vsiravar authored Dec 5, 2023
1 parent 83300d0 commit 78414ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cdk-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 78414ab

Please sign in to comment.