Skip to content

Commit ced5e2a

Browse files
committed
Add yarn to path for present and subsequent steps
1 parent b89a340 commit ced5e2a

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,11 @@ jobs:
396396
with:
397397
node-version: 'node'
398398

399-
- name: Install yarn
400-
run: npm install -g yarn
399+
- name: Install yarn and add to PATH
400+
run: |
401+
npm install -g yarn
402+
echo "$(npm bin -g)" >> $GITHUB_PATH
403+
export PATH="$(npm bin -g):$PATH"
401404
402405
- name: Install test dependencies
403406
working-directory: ecosystem-tests

0 commit comments

Comments
 (0)