Skip to content

Commit dca1e01

Browse files
authored
Bump Cypress CircleCI Orb to v4 in examples (#6179)
1 parent 52bff7e commit dca1e01

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/app/continuous-integration/circleci.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ A typical project can have:
4040
```yaml title=".circleci/config.yml"
4141
version: 2.1
4242
orbs:
43-
# "cypress-io/cypress@3" installs the latest published
43+
# "cypress-io/cypress@4" installs the latest published
4444
# version "s.x.y" of the orb. We recommend you then use
45-
# the strict explicit version "cypress-io/cypress@3.x.y"
45+
# the strict explicit version "cypress-io/cypress@4.x.y"
4646
# to lock the version and prevent unexpected CI changes
47-
cypress: cypress-io/cypress@3
47+
cypress: cypress-io/cypress@4
4848
workflows:
4949
build:
5050
jobs:
@@ -64,7 +64,7 @@ run tests across 4 CI machines
6464
```yaml title=".circleci/config.yml"
6565
version: 2.1
6666
orbs:
67-
cypress: cypress-io/cypress@3
67+
cypress: cypress-io/cypress@4
6868
workflows:
6969
build:
7070
jobs:
@@ -101,7 +101,7 @@ Check out the full <Icon name="github" inline="true" callout="RWA Circle CI conf
101101
```yaml title=".circleci/config.yml"
102102
version: 2.1
103103
orbs:
104-
cypress: cypress-io/cypress@3
104+
cypress: cypress-io/cypress@4
105105
workflows:
106106
test:
107107
jobs:
@@ -114,7 +114,7 @@ workflows:
114114
```yaml title=".circleci/config.yml"
115115
version: 2.1
116116
orbs:
117-
cypress: cypress-io/cypress@3
117+
cypress: cypress-io/cypress@4
118118
workflows:
119119
test:
120120
jobs:
@@ -132,7 +132,7 @@ you are passing the `--browser` flag in your `cypress-command`
132132
```yaml title=".circleci/config.yml"
133133
version: 2.1
134134
orbs:
135-
cypress: cypress-io/cypress@3
135+
cypress: cypress-io/cypress@4
136136
workflows:
137137
test:
138138
jobs:

docs/app/guides/cross-browser-testing.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The following example demonstrates a nightly CI schedule against production
102102
```yaml title='.circleci/config.yml'
103103
version: 2.1
104104
orbs:
105-
cypress: cypress-io/cypress@3
105+
cypress: cypress-io/cypress@4
106106
workflows:
107107
nightly:
108108
triggers:
@@ -132,7 +132,7 @@ Firefox issues can be caught before a production release:
132132
```yaml title='.circleci/config.yml'
133133
version: 2.1
134134
orbs:
135-
cypress: cypress-io/cypress@3
135+
cypress: cypress-io/cypress@4
136136
workflows:
137137
test_develop:
138138
jobs:
@@ -174,7 +174,7 @@ Circle CI workflow UI to distinguish the jobs.
174174
```yaml title='.circleci/config.yml'
175175
version: 2.1
176176
orbs:
177-
cypress: cypress-io/cypress@3
177+
cypress: cypress-io/cypress@4
178178
workflows:
179179
build:
180180
jobs:
@@ -211,7 +211,7 @@ named `firefox`.
211211
```yaml title='.circleci/config.yml'
212212
version: 2.1
213213
orbs:
214-
cypress: cypress-io/cypress@3
214+
cypress: cypress-io/cypress@4
215215
workflows:
216216
build:
217217
jobs:

0 commit comments

Comments
 (0)