Cypress Parallel run using Git Hub Action #25948
Unanswered
rameshGounder
asked this question in
CI setup
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi last few days I am trying to set up Parallel run using Cypress Dashboard.
I am getting this error message:
un actions/upload-artifact@v3
/usr/bin/docker exec 37b9ec9a38f9073a2f5f910c725ede654ba80722ebc0a2358f0209474482277d sh -c "cat /etc/*release | grep ^ID"
Warning: No files were found with the provided path: .build. No artifacts will be uploaded.
My workflow like below:
name: Cypress Parallel Run Test
on:
push:
branches: [cypressDashboard]
jobs:
install-job:
runs-on: ubuntu-latest
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Save build folder
uses: actions/upload-artifact@v3
with:
name: build
if-no-files-found: error
path: .build
ui-chrome-tests:
runs-on: ubuntu-latest
container: cypress/browsers:node12.18.3-chrome87-ff82
needs: install-job
strategy:
fail-fast: false
matrix:
# run copies of the current job in parallel
containers: [1, 2, 3, 4, 5]
steps:
- name: Checkout
uses: actions/checkout@v3
Beta Was this translation helpful? Give feedback.
All reactions