Skip to content

Commit 1fdfed3

Browse files
committed
skip binary install, close #163
1 parent 7cda182 commit 1fdfed3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.circleci/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,24 @@ jobs:
1010
executor:
1111
name: node/default
1212
tag: '12'
13+
environment:
14+
# we don't need Cypress to check code style
15+
CYPRESS_INSTALL_BINARY: '0'
1316
steps:
1417
- checkout
1518
- node/with-cache:
1619
steps:
17-
- run: npm ci
20+
- run: CYPRESS_INSTALL_BINARY=0 npm ci
1821
- run: npm run format:check
1922

2023
publish:
2124
description: Publishes the new version of the plugin to NPM
2225
executor:
2326
name: node/default
2427
tag: '12'
28+
environment:
29+
# we don't need Cypress to do the release
30+
CYPRESS_INSTALL_BINARY: '0'
2531
steps:
2632
- checkout
2733
- node/with-cache:

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
},
2323
"peerDependencies": {
2424
"cypress": "*",
25-
"nyc": "*",
2625
"istanbul-lib-coverage": "*"
2726
},
2827
"repository": {

0 commit comments

Comments
 (0)