Skip to content

Commit

Permalink
build: fix build matrix environment variables and add Node.js version…
Browse files Browse the repository at this point in the history
…s 18 and 20
  • Loading branch information
kgryte committed Nov 11, 2023
1 parent 6da698a commit ebb43d9
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/windows_test_npm_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
BUILD_TASK: ['test-npm-install']

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

# Define the list of operating systems:
OS: ['windows-latest']
Expand All @@ -90,14 +90,20 @@ jobs:
- OS: 'windows-latest'
PLATFORM: 'windows'

- NODE_VERSION: '16 <10.0.0'
NPM_VERSION: '>2.7.0'
- NODE_VERSION: '20'
NPM_VERSION: '>10.0.0'

- NODE_VERSION: '14 <10.0.0'
NPM_VERSION: '>2.7.0'
- NODE_VERSION: '18'
NPM_VERSION: '>10.0.0'

- NODE_VERSION: '12 <10.0.0'
NPM_VERSION: '>2.7.0'
- NODE_VERSION: '16'
NPM_VERSION: '>2.7.0 <10.0.0'

- NODE_VERSION: '14'
NPM_VERSION: '>2.7.0 <10.0.0'

- NODE_VERSION: '12'
NPM_VERSION: '>2.7.0 <9.0.0'

- NODE_VERSION: '10'
NPM_VERSION: '>2.7.0 <7.0.0'
Expand Down

0 comments on commit ebb43d9

Please sign in to comment.