github-action
github-action copied to clipboard
GitHub Action for running Cypress end-to-end & component tests
Seems from https://github.com/bahmutov/cypress-grep-example results that not: ```yml name: ci on: [push] jobs: cypress-run: runs-on: ubuntu-20.04 steps: - name: Checkout 🛎 uses: actions/checkout@v2 - name: Install dependencies 📦 uses: cypress-io/github-action@v2 with:...
Removed extra comma Remove command from the label since the command is logged afterwards
I just spent hours scratching my head trying to understand why my server would not start and always get the error: ```shell Unable to locate executable file: [...] ``` The...
Seems after changing the key it still has restored an old cache?  project https://github.com/cypress-io/cypress-and-jest-typescript-example
It would be nice to be able to use the functionality provided with https://github.com/bahmutov/cypress-repeat with this github action. As far as I can see we would have to not use...
Hi there, first of all thanks for this action. I've looked through the open issue but could not find any solution to this. I attempt to dynamically spawn multiple jobs...
I have set up a Github action that runs my tests. It seems to also creates recordings and screenshots, on the ubuntu instance, but obviously I can't access them now....
If I run tests using this github action on the Ubuntu@latest runner provided by Github virtually all the tests crash: ``` We detected that the Chromium Renderer process just crashed....
Github actions using Cypress 8.7 ``` Run browser-actions/setup-chrome@latest Setup chromium chrome Attempting to download chrome.. Acquiring chrome from https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Linux_x64%2F***%2F***-linux.zip?alt=media Installing chromium... /usr/bin/unzip -o -q /home/fotech/actions-runner/_work/_temp/f144bcd6-c433-4692-ab75-3947f0eabc5c Successfully Installed chromium to /home/fotech/actions-runner/_work/_tool/chromium/***/x64...
We're using the `deployment_status` event to trigger our e2e suite and since we test on our preview deployment, we have no need of installing dependencies apart from Cypress. This step...