Skip to content

Commit b8f0257

Browse files
chrisbreidingkucebbrian-mann
committed
Upgrade to electron 2.0.18 and node 8.9.3 (#4001)
* upgrade to electron 2.0.18 and node 8.9.3 * use cypress/browsers:node8.9.3-chrome73 docker image * fix type_spec for chrome * Revert "fix type_spec for chrome" This reverts commit 7914f68. * fix driver specs for chrome * update engines to 8.9.3 Co-authored-by: Ben Kucera <[email protected]> Co-authored-by: Brian Mann <[email protected]>
1 parent 586c1c0 commit b8f0257

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.node-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.2.1
1+
8.9.3

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ branches:
66

77
# https://www.appveyor.com/docs/lang/nodejs-iojs/
88
environment:
9-
# use latest version of Node 8 with NPM 6
10-
nodejs_version: "8.2.1"
9+
# use matching version of Node.js
10+
nodejs_version: "8.9.3"
1111
# encode secure variables which will NOT be used
1212
# in pull requests
1313
# https://www.appveyor.com/docs/build-configuration/#secure-variables

circle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ executors:
2323
# the Docker image with Cypress dependencies and Chrome browser
2424
cy-doc:
2525
docker:
26-
- image: cypress/browsers:chrome64
26+
- image: cypress/browsers:node8.9.3-chrome73
2727
environment:
2828
PLATFORM: linux
2929

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Cypress.io end to end testing tool",
66
"private": true,
77
"engines": {
8-
"node": ">=8.2.1"
8+
"node": ">=8.9.3"
99
},
1010
"scripts": {
1111
"prestart": "npm run check-deps-pre",

packages/electron/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@packages/electron",
33
"version": "0.0.0",
4-
"electronVersion": "1.8.2",
4+
"electronVersion": "2.0.18",
55
"private": true,
66
"main": "index.js",
77
"scripts": {

scripts/run-docker-local.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set e+x
22

33
echo "This script should be run from cypress's root"
44

5-
name=cypress/browsers:chrome64
5+
name=cypress/browsers:node8.9.3-chrome73
66
echo "Pulling CI container $name"
77

88
docker pull $name

0 commit comments

Comments
 (0)