Skip to content

Commit

Permalink
chore: use absolute links for GitHub PR template (#7867)
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
panzarino authored Jul 2, 2020
1 parent 5454f4b commit 7a5150f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ Delete tasks if they are not applicable.
- [ ] Have tests been added/updated?
- [ ] Has the original issue been tagged with a release in ZenHub? <!-- (internal team only)-->
- [ ] Has a PR for user-facing changes been opened in [`cypress-documentation`](https://github.com/cypress-io/cypress-documentation)? <!-- Link to PR here -->
- [ ] Have API changes been updated in the [`type definitions`](../cli/types/cypress.d.ts)?
- [ ] Have new configuration options been added to the [`cypress.schema.json`](../cli/schema/cypress.schema.json)?
- [ ] Have API changes been updated in the [`type definitions`](https://github.com/cypress-io/cypress/blob/develop/cli/types/cypress.d.ts)?
- [ ] Have new configuration options been added to the [`cypress.schema.json`](https://github.com/cypress-io/cypress/blob/develop/cli/schema/cypress.schema.json)?

1 comment on commit 7a5150f

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 7a5150f Jul 2, 2020

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.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

Instructions are included below, depending on the shell you are using.

In Command Prompt (cmd.exe):

set CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/win32-ia32/appveyor-develop-7a5150fbb1551ebe1533cdc68b2d9251f4e03fed-33861551/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-7a5150fbb1551ebe1533cdc68b2d9251f4e03fed-33861551/cypress.tgz

In PowerShell:

$env:CYPRESS_INSTALL_BINARY = https://cdn.cypress.io/beta/binary/5.0.0/win32-ia32/appveyor-develop-7a5150fbb1551ebe1533cdc68b2d9251f4e03fed-33861551/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-7a5150fbb1551ebe1533cdc68b2d9251f4e03fed-33861551/cypress.tgz

In Git Bash:

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/win32-ia32/appveyor-develop-7a5150fbb1551ebe1533cdc68b2d9251f4e03fed-33861551/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-7a5150fbb1551ebe1533cdc68b2d9251f4e03fed-33861551/cypress.tgz

Using cross-env:

If the above commands do not work for you, you can also try using cross-env:

npm i -g cross-env
cross-env CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/win32-ia32/appveyor-develop-7a5150fbb1551ebe1533cdc68b2d9251f4e03fed-33861551/cypress.zip npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-7a5150fbb1551ebe1533cdc68b2d9251f4e03fed-33861551/cypress.tgz

Please sign in to comment.