-
Hello! i need to integrate cypress in my .gitlab-ci.yml but when i try to make all the steps on the cypress documentation, it's doesn't work. I need help to do that please. |
Beta Was this translation helpful? Give feedback.
Answered by
Gnzikoune
Oct 26, 2023
Replies: 1 comment
-
Hi there, after search how to do that i have finally found, this is my config for cypress: Cypress-test: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Gnzikoune
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there, after search how to do that i have finally found, this is my config for cypress:
Cypress-test:
image: cypress/browsers:node14.19.0-chrome100-ff99-edge
stage: test
before_script:
- npm install
script:
- npx cypress run --e2e --browser chrome
when: manual