Skip to content

Commit

Permalink
Remove incorrectly placed GitHub references in GitLab CI page (#5546)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 authored Oct 30, 2023
1 parent 87e5e34 commit 42d26b2
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions docs/guides/continuous-integration/gitlab-ci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,16 @@ test:
- npm run e2e
```
:::tip
<strong>Try it out</strong>
To try out the example above yourself, fork the
[Cypress Kitchen Sink](https://github.com/cypress-io/cypress-example-kitchensink)
example project and place the above GitHub Action configuration in
`.gitlab-ci.yml`.

:::

**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 in `script` with in
Linux instance for running the outlined `stages` declared in `script` within
the `test` job section of the configuration.
- The code is checked out from our GitHub/GitLab repository.
- 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 our GitHub repository within Electron.
- Run the Cypress tests within the GitLab repository using Electron.

## Testing in Chrome and Firefox with Cypress Docker Images

Expand Down

0 comments on commit 42d26b2

Please sign in to comment.