This repository was archived by the owner on Jul 24, 2024. It is now read-only.
Commit 5a4a48a 1 parent b54053a commit 5a4a48a Copy full SHA for 5a4a48a
File tree 4 files changed +17
-3
lines changed
4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
include :
11
11
- stage : test
12
- node_js : " node "
12
+ node_js : " 14 "
13
13
os : linux
14
14
before_script : npm run lint || exit 1;
15
15
after_success : npm run-script coverage;
16
16
- stage : platform-test
17
- node_js : " node"
17
+ node_js : " 14"
18
+ os : osx
19
+ - stage : platform-test
20
+ node_js : " 13"
21
+ os : linux
22
+ - stage : platform-test
23
+ node_js : " 13"
18
24
os : osx
19
25
- stage : platform-test
20
26
node_js : " 12"
@@ -87,7 +93,7 @@ before_install:
87
93
- echo $TRAVIS_NODE_VERSION
88
94
- npm config set python `which python`
89
95
- if [ $TRAVIS_OS_NAME == "linux" ]; then
90
- if [[ $(node -v) =~ v1[23 ] ]]; then
96
+ if [[ $(node -v) =~ v1[234 ] ]]; then
91
97
export CC="gcc-6";
92
98
export CXX="g++-6";
93
99
export LINK="gcc-6";
Original file line number Diff line number Diff line change 4
4
5
5
NodeJS | Minimum node-sass version | Node Module
6
6
--------|--------------------------|------------
7
+ Node 14 | 4.14+ | 83
7
8
Node 13 | 4.13+ | 79
8
9
Node 12 | 4.12+ | 72
9
10
Node 11 | 4.10+ | 67
Original file line number Diff line number Diff line change 79
79
- nodejs_version : 13
80
80
GYP_MSVS_VERSION : 2017
81
81
APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
82
+ - nodejs_version : 14
83
+ GYP_MSVS_VERSION : 2017
84
+ APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
82
85
83
86
install :
84
87
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
179
182
- nodejs_version : 13
180
183
GYP_MSVS_VERSION : 2017
181
184
APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
185
+ - nodejs_version : 14
186
+ GYP_MSVS_VERSION : 2017
187
+ APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
182
188
183
189
install :
184
190
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ function getHumanNodeVersion(abi) {
79
79
case 67 : return 'Node.js 11.x' ;
80
80
case 72 : return 'Node.js 12.x' ;
81
81
case 79 : return 'Node.js 13.x' ;
82
+ case 83 : return 'Node.js 14.x' ;
82
83
default : return false ;
83
84
}
84
85
}
You can’t perform that action at this time.
0 commit comments