File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,24 @@ jobs:
10
10
executor :
11
11
name : node/default
12
12
tag : ' 12'
13
+ environment :
14
+ # we don't need Cypress to check code style
15
+ CYPRESS_INSTALL_BINARY : ' 0'
13
16
steps :
14
17
- checkout
15
18
- node/with-cache :
16
19
steps :
17
- - run : npm ci
20
+ - run : CYPRESS_INSTALL_BINARY=0 npm ci
18
21
- run : npm run format:check
19
22
20
23
publish :
21
24
description : Publishes the new version of the plugin to NPM
22
25
executor :
23
26
name : node/default
24
27
tag : ' 12'
28
+ environment :
29
+ # we don't need Cypress to do the release
30
+ CYPRESS_INSTALL_BINARY : ' 0'
25
31
steps :
26
32
- checkout
27
33
- node/with-cache :
Original file line number Diff line number Diff line change 22
22
},
23
23
"peerDependencies" : {
24
24
"cypress" : " *" ,
25
- "nyc" : " *" ,
26
25
"istanbul-lib-coverage" : " *"
27
26
},
28
27
"repository" : {
You can’t perform that action at this time.
0 commit comments