Skip to content

Commit

Permalink
fix(ci): use yarn for example repo dep installs (#15462)
Browse files Browse the repository at this point in the history
  • Loading branch information
amirrustam authored Mar 12, 2021
1 parent 35dde75 commit 2871b19
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,9 @@ commands:
git checkout pr-<<parameters.pull_request_id>>
git log -n 2
- run:
command: npm install
# Install with yarn if yarn.lock present
command: |
[[ -f yarn.lock ]] && yarn || npm install
working_directory: /tmp/<<parameters.repo>>
- run:
name: Install Cypress
Expand Down

4 comments on commit 2871b19

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 2871b19 Mar 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/6.7.0/circle-develop-2871b19f62fa8721314afdbf7ca7d46827c90869/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 2871b19 Mar 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AppVeyor has built the win32 ia32 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/6.7.0/appveyor-develop-2871b19f62fa8721314afdbf7ca7d46827c90869/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 2871b19 Mar 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AppVeyor has built the win32 x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/6.7.0/appveyor-develop-2871b19f62fa8721314afdbf7ca7d46827c90869/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 2871b19 Mar 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/6.7.0/circle-develop-2871b19f62fa8721314afdbf7ca7d46827c90869/cypress.tgz

Please sign in to comment.