We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b89a340 commit ced5e2aCopy full SHA for ced5e2a
1 file changed
.github/workflows/test.yml
@@ -396,8 +396,11 @@ jobs:
396
with:
397
node-version: 'node'
398
399
- - name: Install yarn
400
- run: npm install -g yarn
+ - name: Install yarn and add to PATH
+ run: |
401
+ npm install -g yarn
402
+ echo "$(npm bin -g)" >> $GITHUB_PATH
403
+ export PATH="$(npm bin -g):$PATH"
404
405
- name: Install test dependencies
406
working-directory: ecosystem-tests
0 commit comments