This repository was archived by the owner on Apr 28, 2025. It is now read-only.
  
  
  - 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 41
fix(workflows): exclude some node versions for windows/mac, update tools as needed for test #140
          
     Merged
      
      
            alexander-akait
  merged 1 commit into
  webpack-contrib:master
from
SlyryD:runTestOnX64Image
  
      
      
   
  Nov 13, 2024 
      
    
  
     Merged
                    Changes from all commits
      Commits
    
    
  File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -42,9 +42,6 @@ jobs: | |
| node-version: ${{ matrix.node-version }} | ||
| cache: "npm" | ||
|  | ||
| - name: Use latest NPM | ||
| run: sudo npm i -g npm | ||
|  | ||
| - name: Install dependencies | ||
| run: npm ci | ||
|  | ||
|  | @@ -66,6 +63,15 @@ jobs: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | ||
| node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x] | ||
| webpack-version: [latest] | ||
| exclude: | ||
| - os: windows-latest | ||
| node-version: 10.x | ||
| - os: macos-latest | ||
| node-version: 10.x | ||
| - os: macos-latest | ||
| node-version: 12.x | ||
| - os: macos-latest | ||
| node-version: 14.x | ||
|  | ||
| runs-on: ${{ matrix.os }} | ||
|  | ||
|  | @@ -86,13 +92,21 @@ jobs: | |
| node-version: ${{ matrix.node-version }} | ||
| cache: "npm" | ||
|  | ||
| - name: Use latest NPM on ubuntu/macos | ||
| if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' | ||
| run: sudo npm i -g npm | ||
| - name: Update node-gyp on windows | ||
| if: matrix.os == 'windows-latest' && (matrix.node-version == '12.x' || matrix.node-version == '14.x') | ||
| run: Get-Command node | Select-Object -ExpandProperty Source | Join-Path -ChildPath "..\node_modules\npm\node_modules\npm-lifecycle" -Resolve | Push-Location; npm install [email protected]; Pop-Location | ||
|  | ||
| - name: Install Python setuptools on ubuntu | ||
| if: matrix.os == 'ubuntu-latest' | ||
| run: python3 -m pip install setuptools | ||
|  | ||
| - name: Install Python setuptools on macos | ||
| if: matrix.os == 'macos-latest' | ||
| run: brew install python-setuptools | ||
|  | ||
| - name: Use latest NPM on windows | ||
| - name: Install Python setuptools on windows | ||
| if: matrix.os == 'windows-latest' | ||
| run: npm i -g npm | ||
| run: python -m pip install setuptools | ||
|  | ||
| - name: Install dependencies | ||
| run: npm ci | ||
|  | ||
      
      Oops, something went wrong.
        
    
  
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.