GitLab CI
info
What you'll learn​
- How to run Cypress tests with GitLab as part of CI/CD pipeline
- How to parallelize Cypress test runs within GitLab CI/CD
With its hosted CI/CD Service, GitLab offers developers "a tool built into GitLab for software development through the continuous methodologies".
Detailed documentation is available in the GitLab CI/CD Documentation.
Basic Setup​
The example below is basic CI setup and job using
GitLab CI/CD
to run Cypress tests within the Electron browser. This GitLab CI configuration
is placed within .gitlab-ci.yml
.
stages:
- test
test:
image: node:latest
stage: test
script:
# install dependencies
- npm ci
# start the server in the background
- npm start &
# run Cypress tests
- npm run e2e
How this configuration works:
- On push to this repository, this job will provision and start GitLab-hosted
Linux instance for running the outlined
stages
declared inscript
within thetest
job section of the configuration. - The code is checked out from the GitLab repository.
- Finally, our scripts will:
- Install npm dependencies
- Start the project web server (
npm start
) - Run the Cypress tests within the GitLab repository using Electron.