File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ filters: &filters
8
8
9
9
jobs :
10
10
install-and-persist :
11
- executor : cypress/default
11
+ executor :
12
+ name : cypress/default
13
+ node-version : " 20.6.0"
12
14
steps :
13
15
- cypress/install :
14
16
working-directory : examples/angular-app
Original file line number Diff line number Diff line change
1
+ description : >
2
+ Run Cypress tests using the cypress/default executor with a specified node version.
3
+ usage :
4
+ version : 2.1
5
+ orbs :
6
+ cypress : cypress-io/cypress@3
7
+ jobs :
8
+ run-cypress-in-specified-node-version :
9
+ executor :
10
+ name : cypress/default
11
+ node-version : " 20.6"
12
+ steps :
13
+ - cypress/install :
14
+ package-manager : " yarn"
15
+ - cypress/run-tests :
16
+ start-command : " npm run start:dev"
17
+ cypress-command : " npx cypress run"
18
+ workflows :
19
+ use-my-orb :
20
+ jobs :
21
+ - run-cypress-in-specified-node-version :
22
+ name : Run Cypress in Node 20
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: >
3
3
parameters :
4
4
node-version :
5
5
type : string
6
- default : " 16 .16"
6
+ default : " 18 .16.1 "
7
7
description : >
8
8
The version of Node to run your tests with.
9
9
docker :
You can’t perform that action at this time.
0 commit comments