File tree 1 file changed +19
-4
lines changed
1 file changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ version: 2.1
9
9
orbs :
10
10
# use Cypress orb from CircleCI registry
11
11
cypress :
cypress-io/[email protected]
12
- win : circleci/windows@5.0 .0
12
+ win : circleci/windows@5.1 .0
13
13
14
14
executors :
15
15
mac :
28
28
shell : bash.exe
29
29
steps :
30
30
- checkout
31
-
31
+ - run :
32
+ name : Install Node.js
33
+ command : |
34
+ nvm --version
35
+ nvm install 22
36
+ nvm use 22
32
37
- restore_cache :
33
38
key : dependencies-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}
34
39
63
68
shell : bash.exe
64
69
steps :
65
70
- checkout
66
-
71
+ - run :
72
+ name : Install Node.js
73
+ command : |
74
+ nvm --version
75
+ nvm install 22
76
+ nvm use 22
67
77
- restore_cache :
68
78
key : dependencies-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}
69
79
@@ -101,7 +111,12 @@ jobs:
101
111
shell : bash.exe
102
112
steps :
103
113
- checkout
104
-
114
+ - run :
115
+ name : Install Node.js
116
+ command : |
117
+ nvm --version
118
+ nvm install 22
119
+ nvm use 22
105
120
- restore_cache :
106
121
key : dependencies-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}
107
122
You can’t perform that action at this time.
0 commit comments