Skip to content

Commit

Permalink
fix(workflows): support mac test workflow with old versions of node b…
Browse files Browse the repository at this point in the history
…y using x64 image
  • Loading branch information
SlyryD committed Oct 22, 2024
1 parent 183f619 commit 5ad9588
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-latest-large]
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x]
webpack-version: [latest]

Expand All @@ -87,7 +87,7 @@ jobs:
cache: "npm"

- name: Use latest NPM on ubuntu/macos
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest-large'
run: sudo npm i -g npm

- name: Use latest NPM on windows
Expand Down

0 comments on commit 5ad9588

Please sign in to comment.