Skip to content

Commit

Permalink
#30246 Set up the PATH env with the restored node and yarn versions. +1
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolina committed Oct 8, 2024
1 parent 42e405a commit e780ac0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ runs:
- name: 'Adding node and yarn to the PATH env'
run: |
echo "::group::Adding node and yarn to the PATH env"
ls -R ${{ github.workspace }}/installs
echo "PATH=$PATH:${{ github.workspace }}/installs/node/:${{ github.workspace }}/installs/node/yarn/dist/bin" >> $GITHUB_ENV
BASE_PATH=${{ github.workspace }}/installs
ls -R $BASE_PATH
echo "PATH=$PATH:${BASE_PATH}/node/:${BASE_PATH}/node/yarn/dist/bin" >> $GITHUB_ENV
echo "::endgroup::"
shell: bash

Expand Down

0 comments on commit e780ac0

Please sign in to comment.