From 361bd7eb70785b24d10b44d0f33707efad68918a Mon Sep 17 00:00:00 2001 From: tenequm Date: Tue, 3 Oct 2023 14:58:01 +0300 Subject: [PATCH] fix: test new workaround --- .github/workflows/reusable-e2e-tests.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/reusable-e2e-tests.yml b/.github/workflows/reusable-e2e-tests.yml index e36d4f0b6e..6283877ef9 100644 --- a/.github/workflows/reusable-e2e-tests.yml +++ b/.github/workflows/reusable-e2e-tests.yml @@ -175,15 +175,19 @@ jobs: ref: "${{ env.E2EBRANCHNAME }}" path: e2eTests - # Fixing issue with not having yarn installed on self-hosted runners in Kubernetes - - name: Install yarn to fix self-hosted runner issue when running setup-node - #Ref: https://github.com/actions/setup-node/issues/182 - run: |- - curl -fsSL --create-dirs -o $HOME/bin/yarn \ - https://github.com/yarnpkg/yarn/releases/download/v1.22.19/yarn-1.22.19.js - chmod +x $HOME/bin/yarn - echo "$HOME/bin" >> $GITHUB_PATH + # # Fixing issue with not having yarn installed on self-hosted runners in Kubernetes + # - name: Install yarn to fix self-hosted runner issue when running setup-node + # #Ref: https://github.com/actions/setup-node/issues/182 + # run: |- + # curl -fsSL --create-dirs -o $HOME/bin/yarn \ + # https://github.com/yarnpkg/yarn/releases/download/v1.22.19/yarn-1.22.19.js + # chmod +x $HOME/bin/yarn + # echo "$HOME/bin" >> $GITHUB_PATH + - uses: actions/setup-node@v3 + with: + node-version: '18.16.1' + - run: npm install -g yarn - uses: actions/setup-node@v3 with: node-version: '18.16.1'