Error calling install command for cypress/run
See original GitHub issueI’m getting the following error in CircleCI for all my branches, without having made any changes to my CircleCI config:
Config Processing Error (Don’t rerun)
#!/bin/sh -eo pipefail # Error calling workflow: 'build' # Error calling job: 'cypress/run' # Error calling command: 'install' # Type error for argument build: expected type: steps, actual value: \"\" (type string) # # ------- # Warning: This configuration was auto-generated to show you the message above. # Don't rerun this job. Rerunning will have no effect. false Exited with code 1
I was using version 1.7.0 of the orb but upgraded it to 1.10.0; I’m still having the same problem. Here is my circle.yml
config:
version: 2.1
orbs:
cypress: cypress-io/cypress@1.10.0
executors:
with-chrome:
docker:
- image: 'cypress/browsers:node10.16.0-chrome76'
workflows:
build:
jobs:
- cypress/run:
executor: with-chrome
browser: chrome
command: 'npm run lint && npm run test-ci'
post-steps:
- store_artifacts:
path: coverage
Usually, the build passes, and I see all the following steps executed successfully:
But now I’m see this (described above):
Issue Analytics
- State:
- Created 4 years ago
- Reactions:5
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Command Line - Cypress Documentation
This guide assumes you've already read our Installing Cypress guide and installed Cypress as an npm module. After installing you'll be able to...
Read more >Cypress failed to start on Windows - Stack Overflow
Try this npx cypress install --force then use npx cypress open.
Read more >cypress-io/cypress - Gitter
... 10 machine running npm install and npx cypress open in Command Prompt. I'm sure this is common problem but I can't seem...
Read more >Install Cypress - Tools QA
Note : npx is available with npm > 5.2 version only. It is how the commands can run inside Visual Studio Code Editor...
Read more >@cypress/github-action - npm
You can use cypress info command to see the browsers installed on the machine. Headed. Run the browser in headed mode - as...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
+1 also seeing this running 1.8.0
Seems according to this issue and messages on GitChat that this was resolved on the CircleCI side