This repository was archived by the owner on Jul 24, 2024. It is now read-only.
File tree 7 files changed +25
-18
lines changed
7 files changed +25
-18
lines changed Original file line number Diff line number Diff line change 16
16
matrix :
17
17
node :
18
18
- 14
19
- # Node 16 and 17 are perma-red for the tests right now
19
+ # Node 16+ are perma-red for the tests right now
20
20
# - 16
21
- # - 17
21
+ # - 18
22
+ # - 19
22
23
23
24
steps :
24
25
- name : Install Alpine build tools
Original file line number Diff line number Diff line change 16
16
node :
17
17
- 14
18
18
- 16
19
- - 17
19
+ - 18
20
20
21
21
include :
22
22
- node : 14
@@ -27,10 +27,14 @@ jobs:
27
27
gcc : " gcc-8"
28
28
gpp : " g++-8"
29
29
os : ubuntu-18.04
30
- - node : 17
30
+ - node : 18
31
31
gcc : " gcc-8"
32
32
gpp : " g++-8"
33
- os : ubuntu-18.04
33
+ os : ubuntu-20.04
34
+ - node : 19
35
+ gcc : " gcc-8"
36
+ gpp : " g++-8"
37
+ os : ubuntu-20.04
34
38
35
39
36
40
steps :
Original file line number Diff line number Diff line change 16
16
node :
17
17
- 14
18
18
- 16
19
- - 17
19
+ - 18
20
+ - 19
20
21
21
22
steps :
22
23
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
build :
11
- runs-on : ${{ matrix.os }}
11
+ runs-on : windows-2019
12
12
13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
16
node :
17
17
- 14
18
18
- 16
19
- - 17
19
+ - 18
20
+ - 19
20
21
21
22
architecture :
22
23
- x64
23
24
- x86
24
25
25
- include :
26
- - node : 14
27
- os : windows-2019
28
- - node : 16
29
- os : windows-2019
30
- - node : 17
31
- os : windows-2019
32
-
33
26
steps :
34
27
- uses : actions/checkout@v3
35
28
Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ Below is a quick guide for minimum and maximum supported versions of node-sass:
17
17
18
18
NodeJS | Supported node-sass version | Node Module
19
19
--------|-----------------------------|------------
20
- Node 17 | 7.0+ | 102
20
+ Node 19 | 8.0+ | 111
21
+ Node 18 | 8.0+ | 108
22
+ Node 17 | 7.0+, <8.0 | 102
21
23
Node 16 | 6.0+ | 93
22
24
Node 15 | 5.0+, <7.0 | 88
23
25
Node 14 | 4.14+ | 83
Original file line number Diff line number Diff line change 39
39
- nodejs_version : 16
40
40
GYP_MSVS_VERSION : 2019
41
41
APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2019
42
- - nodejs_version : 17
42
+ - nodejs_version : 18
43
43
GYP_MSVS_VERSION : 2019
44
44
APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2019
45
+ - nodejs_version : 19
46
+ GYP_MSVS_VERSION : 2019
47
+ APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2019
48
+
45
49
46
50
install :
47
51
# 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 @@ -82,6 +82,8 @@ function getHumanNodeVersion(abi) {
82
82
case 88 : return 'Node.js 15.x' ;
83
83
case 93 : return 'Node.js 16.x' ;
84
84
case 102 : return 'Node.js 17.x' ;
85
+ case 108 : return 'Node.js 18.x' ;
86
+ case 111 : return 'Node.js 19.x' ;
85
87
default : return false ;
86
88
}
87
89
}
You can’t perform that action at this time.
0 commit comments