Skip to content

Commit 592f3d9

Browse files
ci: fix
1 parent ee8cc18 commit 592f3d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
os: [ubuntu-latest, windows-latest, macos-latest]
29-
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 21.x]
29+
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x]
3030
runs-on: ${{ matrix.os }}
3131
steps:
3232
- uses: actions/checkout@v4
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
result-encoding: string
3737
script: |
38-
if ('${{ matrix.os }}' === 'macos-latest' && '${{ matrix['node-version'] }}' === '10.x') {
38+
if ('${{ matrix.os }}' === 'macos-latest' && ('${{ matrix['node-version'] }}' === '10.x' || '${{ matrix['node-version'] }}' === '12.x' || '${{ matrix['node-version'] }}' === '14.x')) {
3939
return "x64"
4040
} else {
4141
return ''

0 commit comments

Comments
 (0)