Skip to content

Commit ebb43d9

Browse files
committed
build: fix build matrix environment variables and add Node.js versions 18 and 20
1 parent 6da698a commit ebb43d9

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.github/workflows/windows_test_npm_install.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
BUILD_TASK: ['test-npm-install']
7777

7878
# Define the list of Node.js versions:
79-
NODE_VERSION: ['16', '14', '12', '10', '8', '6', '4']
79+
NODE_VERSION: ['20', '18', '16', '14', '12', '10', '8', '6', '4']
8080

8181
# Define the list of operating systems:
8282
OS: ['windows-latest']
@@ -90,14 +90,20 @@ jobs:
9090
- OS: 'windows-latest'
9191
PLATFORM: 'windows'
9292

93-
- NODE_VERSION: '16 <10.0.0'
94-
NPM_VERSION: '>2.7.0'
93+
- NODE_VERSION: '20'
94+
NPM_VERSION: '>10.0.0'
9595

96-
- NODE_VERSION: '14 <10.0.0'
97-
NPM_VERSION: '>2.7.0'
96+
- NODE_VERSION: '18'
97+
NPM_VERSION: '>10.0.0'
9898

99-
- NODE_VERSION: '12 <10.0.0'
100-
NPM_VERSION: '>2.7.0'
99+
- NODE_VERSION: '16'
100+
NPM_VERSION: '>2.7.0 <10.0.0'
101+
102+
- NODE_VERSION: '14'
103+
NPM_VERSION: '>2.7.0 <10.0.0'
104+
105+
- NODE_VERSION: '12'
106+
NPM_VERSION: '>2.7.0 <9.0.0'
101107

102108
- NODE_VERSION: '10'
103109
NPM_VERSION: '>2.7.0 <7.0.0'

0 commit comments

Comments
 (0)