Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/app/continuous-integration/circleci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ A typical project can have:
```yaml title=".circleci/config.yml"
version: 2.1
orbs:
# "cypress-io/cypress@4" installs the latest published
# "cypress-io/cypress@6" installs the latest published
# version "s.x.y" of the orb. We recommend you then use
# the strict explicit version "cypress-io/cypress@4.x.y"
# the strict explicit version "cypress-io/cypress@6.x.y"
# to lock the version and prevent unexpected CI changes
cypress: cypress-io/cypress@4
cypress: cypress-io/cypress@6
workflows:
build:
jobs:
Expand All @@ -64,7 +64,7 @@ run tests across 4 CI machines
```yaml title=".circleci/config.yml"
version: 2.1
orbs:
cypress: cypress-io/cypress@4
cypress: cypress-io/cypress@6
workflows:
build:
jobs:
Expand Down Expand Up @@ -101,7 +101,7 @@ Check out the full <Icon name="github" inline="true" callout="RWA Circle CI conf
```yaml title=".circleci/config.yml"
version: 2.1
orbs:
cypress: cypress-io/cypress@4
cypress: cypress-io/cypress@6
workflows:
test:
jobs:
Expand All @@ -114,7 +114,7 @@ workflows:
```yaml title=".circleci/config.yml"
version: 2.1
orbs:
cypress: cypress-io/cypress@4
cypress: cypress-io/cypress@6
workflows:
test:
jobs:
Expand All @@ -132,7 +132,7 @@ This is only needed if you are passing the `--browser` flag in your `cypress-com
```yaml title=".circleci/config.yml"
version: 2.1
orbs:
cypress: cypress-io/cypress@4
cypress: cypress-io/cypress@6
workflows:
test:
jobs:
Expand Down
8 changes: 4 additions & 4 deletions docs/app/guides/cross-browser-testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ The following example demonstrates a nightly CI schedule against production
```yaml title='.circleci/config.yml'
version: 2.1
orbs:
cypress: cypress-io/cypress@4
cypress: cypress-io/cypress@6
workflows:
nightly:
triggers:
Expand Down Expand Up @@ -132,7 +132,7 @@ Firefox issues can be caught before a production release:
```yaml title='.circleci/config.yml'
version: 2.1
orbs:
cypress: cypress-io/cypress@4
cypress: cypress-io/cypress@6
workflows:
test_develop:
jobs:
Expand Down Expand Up @@ -174,7 +174,7 @@ Circle CI workflow UI to distinguish the jobs.
```yaml title='.circleci/config.yml'
version: 2.1
orbs:
cypress: cypress-io/cypress@4
cypress: cypress-io/cypress@6
workflows:
build:
jobs:
Expand Down Expand Up @@ -211,7 +211,7 @@ named `firefox`.
```yaml title='.circleci/config.yml'
version: 2.1
orbs:
cypress: cypress-io/cypress@4
cypress: cypress-io/cypress@6
workflows:
build:
jobs:
Expand Down